--- id: 5ddb965c65d27e1512d44dd8 title: Part 65 challengeType: 0 isHidden: true --- ## Description
Create a variable named `clearOutput` and set it equal to a blank arrow function: ```js const clearOutput = () => {} ``` This is similar to `function clearOutput () {}`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert( typeof clearOutput === "function" ); ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

Sex
Breakfast
Lunch
Dinner
```
### After Test
```html ```
## Solution
```html ```