--- id: 5ddb965c65d27e1512d44dd3 title: Step 60 challengeType: 0 dashedName: step-60 --- # --description-- Add a class named `cal-control` to the `calorieInput` element. This is similar to how you added a class name to the `foodInput` element previously. We are adding this class name because in the `calculate()` function you created previously, the `total` is calculated from the elements with the class name `cal-control`. # --hints-- See description above for instructions. ```js assert( code .replace(/\s/g, '') .match(/calorieInput\.classList\.add\([\'\"\`]cal\-control[\'\"\`]\)/) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

Sex
Breakfast
Lunch
Dinner
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```