--- id: 5ddb965c65d27e1512d44db4 title: Part 29 challengeType: 0 --- # --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