--- id: 5ddb965c65d27e1512d44db4 title: Part 29 challengeType: 0 isHidden: true --- ## 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`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(/const\s*result\s*=\s*document\.createElement\([\'\"\`]h3[\'\"\`]\)/.test(code)); ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

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