--- id: 5ddb965c65d27e1512d44dd4 title: Step 61 challengeType: 0 dashedName: step-61 --- # --description-- Later we will want to remove these extra `calorieInput` elements that we added. This will happen when the user pushes the "Clear" button. To keep track of them, add the class name `extra-cal-control` to the `calorieInput` element. # --hints-- See description above for instructions. ```js assert( code .replace(/\s/g, '') .match(/calorieInput\.classList\.add\([\'\"\`]extra-cal\-control[\'\"\`]\)/) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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