--- id: 5ddb965c65d27e1512d44dde title: Part 71 challengeType: 0 isBeta: true --- ## Description
To remove the items `foodInputs` array, we will iterate through them by using the `forEach()` function. Add `foodInputs.forEach()`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert( code.replace(/\s/g, '').match(/foodInputs.forEach\(\)/) ) ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

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