--- id: 5ddb965c65d27e1512d44de2 title: Step 75 challengeType: 0 dashedName: step-75 --- # --description-- Finally, it's time to clear the other calories that may have been entered for Breakfast, Lunch, and Dinner. This can be achieved by calling the `reset()` method on the form. Get a reference to the document element with the `id` of `calorie-form` and chain the `reset()` method to it. # --hints-- See description above for instructions. ```js assert( code .replace(/\s/g, '') .match(/document\.getElementById\([\'\"\`]calorie-form[\'\"\`]\).reset\(\)/) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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