--- id: 5ddb965c65d27e1512d44db3 title: Part 28 challengeType: 0 dashedName: part-28 --- # --description-- If you look near the bottom of the HTML page, notice that there is currently an empty `div` element: `
`. We will be inserting output inside this `div`, telling the user if they are in a calorie surplus or deficit. Create a variable named `output` and set it equal to this division element with the `id` of `output`. # --hints-- See description above for instructions. ```js assert( /const\s*output\s*=\s*document\.getElementById\([\'\"\`]output[\'\"\`]\)/.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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