--- id: 5ef9b03c81a63668521804d1 title: Step 25 challengeType: 0 dashedName: step-25 --- # --description-- After the `figure` element, add another `h3` element with the text `Top 3 things cats hate:`. # --hints-- There should be an `h3` element right above the second `section` element's closing tag. Make it has an opening and closing tag. ```js assert( document.querySelectorAll('main > section')[1].lastElementChild.nodeName === 'H3' && code.match(/<\/h3\>/g).length === 2 ); ``` The new `h3` element should have the text `Top 3 things cats hate:`. Make sure to include the colon at the end of the text. ```js assert( document .querySelectorAll('main > section')[1] .lastElementChild.innerText.toLowerCase() .replace(/\s+/g, ' ') === 'top 3 things cats hate:' ); ``` There should be a `figure` above the new `h3` element. You may have accidentally deleted the `figure` element. ```js const secondSectionLastElemNode = document.querySelectorAll('main > section')[1] .lastElementChild; assert( secondSectionLastElemNode.nodeName === 'H3' && secondSectionLastElemNode.previousElementSibling.nodeName === 'FIGURE' ); ``` # --seed-- ## --seed-contents-- ```html

CatPhotoApp

Cat Photos

Click here to view more cat photos.

A cute orange cat lying on its back.

Cat Lists

Things cats love:

--fcc-editable-region--
A slice of lasagna on a plate.
Cats love lasagna.
--fcc-editable-region--
```