--- id: 5ddb965c65d27e1512d44dde title: Step 71 challengeType: 0 dashedName: step-71 --- # --description-- To remove the items `foodInputs` array, we will iterate through them by using the `forEach()` function. Add `foodInputs.forEach()`. # --hints-- See description above for instructions. ```js assert(code.replace(/\s/g, '').match(/foodInputs.forEach\(\)/)); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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