--- id: 5ddb965c65d27e1512d44dbf title: Step 40 challengeType: 0 dashedName: step-40 --- # --description-- Let's create a few more HTML elements to add to the `output`. Create an `h4` element and assign it to a variable named `recommended`. # --hints-- See description above for instructions. ```js assert( /const\s*recommended\s*=\s*document\.createElement\([\'\"\`]h4[\'\"\`]\)/.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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