--- id: 5ddb965c65d27e1512d44ddd title: Step 70 challengeType: 0 dashedName: step-70 --- # --description-- We need to remove all elements with the class name `food-control` that are added when the user clicks the "Add" button. Inside the function body of `clearForm`, create a variable named `foodInputs` and set it equal to an array of elements with the class name `food-control`. This is similar to how you declared the `total` variable previously in the `calculate` method. # --hints-- See description above for instructions. ```js assert( code .replace(/\s/g, '') .match( /const\s*foodInputs\s*=Array\.from\(document\.getElementsByClassName\([\'\"\`]food\-control[\'\"\`]\)\)/ ) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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