--- id: 5ddb965c65d27e1512d44dd8 title: Part 65 challengeType: 0 dashedName: part-65 --- # --description-- Create a variable named `clearOutput` and set it equal to a blank arrow function: ```js const clearOutput = () => {} ``` This is similar to `function clearOutput () {}`. # --hints-- See description above for instructions. ```js assert(typeof clearOutput === 'function'); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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