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

Calorie Counter

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