--- id: 5ddb965c65d27e1512d44ddb title: Step 68 challengeType: 0 dashedName: step-68 --- # --description-- The `clearOutput` function is called when the user clicks the "Clear" button. But it also needs to be run when the user clicks the "Calculate" button. In the `calculate()` function, right after `event.preventDefault()`, call the `clearOutput` function. # --hints-- See description above for instructions. ```js assert(calculate.toString().match(/clearOutput\(\)/)); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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