--- id: 61fd6ab779390f49148773bb title: Step 5 challengeType: 0 dashedName: step-5 --- # --description-- Below your `h1` element, create a `div` element. Give it an `id` attribute set to `years`. You want this particular element to be hidden from screen readers, so give it the `aria-hidden` attribute set to `true`. # --hints-- You should create a new `div` element after your `h1` element. ```js assert(document.querySelector('h1')?.nextElementSibling?.localName === 'div'); ``` Your new `div` element should have an `id` attribute set to `years`. ```js assert(document.querySelector('div')?.getAttribute('id') === 'years'); ``` Your new `div` element should have the `aria-hidden` attribute set to `true`. ```js assert(document.querySelector('div')?.getAttribute('aria-hidden') === 'true'); ``` # --seed-- ## --seed-contents-- ```html