--- id: 5ddb965c65d27e1512d44dd9 title: Part 66 challengeType: 0 dashedName: part-66 --- # --description-- We need to remove the contents inside of element with the `id` of `output`. In the body of the `clearOutput()` function, set the `innerHTML` property of that element equal to an empty string, `''`. # --hints-- See description above for instructions. ```js assert( code .replace(/\s/g, '') .match( /document\.getElementById\([\'\"\`]output[\'\"\`]\)\.innerHTML\=[\'\"\`][\'\"\`]/ ) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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