--- id: 5ddb965c65d27e1512d44ddf title: Part 72 challengeType: 0 isBeta: true --- ## Description
We need to provide a callback function in the parentheses of `forEach()`. This function will take each input item, in our case we'll call it `input`, as an argument. Then inside the function body, we need to call the `remove()` method. In between the parentheses of the `.forEach()` function, enter `input => input.remove()`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert( code.replace(/\s/g, '').match(/foodInputs.forEach\(input=>input.remove\(\)\)/) ) ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

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