--- id: 5ddb965c65d27e1512d44de1 title: Step 74 challengeType: 0 dashedName: step-74 --- # --description-- Similar to how you removed each `foodInputs` elements, use the `forEach()` function to remove each `calInputs` element. # --hints-- See description above for instructions. ```js assert( code.replace(/\s/g, '').match(/calInputs.forEach\(input=>input.remove\(\)\)/) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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