--- id: 5ddb965c65d27e1512d44dd7 title: Part 64 challengeType: 0 dashedName: part-64 --- # --description-- Inside the `function` body, instruct your code to call two other functions, `clearOutput()` and `clearForm()`. We will create these functions shortly. # --hints-- See description above for instructions. ```js assert(/clearOutput\(\)/.test(code) && /clearForm\(\)/.test(code)); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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