--- id: 5ddb965c65d27e1512d44db4 title: Step 29 challengeType: 0 dashedName: step-29 --- # --description-- Now it's time to create the HTML elements that we will add inside of `output`. To create an element, use `createElement()`. For example: ```js const myHeading1 = document.createElement('h1') ``` Create an `h3` element and assign it to a variable named `result`. # --hints-- See description above for instructions. ```js assert( /const\s*result\s*=\s*document\.createElement\([\'\"\`]h3[\'\"\`]\)/.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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