---
id: 5f459fd48bdc98491ca6d1a3
title: Step 72
challengeType: 0
dashedName: step-72
---
# --description--
Go ahead and add another `hr` element between the `main` element and the `footer` element.
# --hints--
You should add a second `hr` element.
```js
assert($('hr').length === 2);
```
Your new `hr` element should be between the `main` element and the `footer` element.
```js
assert($('hr')[1].previousElementSibling.tagName === 'MAIN');
assert($('hr')[1].nextElementSibling.tagName === 'FOOTER');
```
# --seed--
## --seed-contents--
```html