--- id: 5ddb965c65d27e1512d44dce title: Step 55 challengeType: 0 dashedName: step-55 --- # --description-- We want to add the class name `food-control` to the `foodInput` element. We will reference this class name when we remove these inputs later on. In addition to using the `setAttribute` method, we can also update the `classList` property to add a class name, like `myInput.classList.add('my-class)`. Add the class name `food-control` to the `foodInput` element. # --hints-- See description above for instructions. ```js assert( code .replace(/\s/g, '') .match(/foodInput\.classList\.add\([\'\"\`]food\-control[\'\"\`]\)/) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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