--- id: 5ddb965c65d27e1512d44dbd title: Step 38 challengeType: 0 dashedName: step-38 --- # --description-- Next, let's create and add a horizontal rule (`hr`) element to the output. Create an `hr` element and assign it to a variable named `line`. # --hints-- See description above for instructions. ```js assert( /const\s*line\s*=\s*document\.createElement\([\'\"\`]hr[\'\"\`]\)/.test(code) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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