--- id: 5ddb965c65d27e1512d44dce title: Part 55 challengeType: 0 isHidden: true --- ## 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.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert( code.replace(/\s/g, '').match(/foodInput\.classList\.add\([\'\"\`]food\-control[\'\"\`]\)/) ); ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

Sex
Breakfast
Lunch
Dinner
```
### After Test
```html ```
## Solution
```html ```