--- id: 5ddb965c65d27e1512d44ddf title: Step 72 challengeType: 0 dashedName: step-72 --- # --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()`. # --hints-- See description above for instructions. ```js assert( code.replace(/\s/g, '').match(/foodInputs.forEach\(input=>input.remove\(\)\)/) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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