--- id: 5dfa37b9eacea3f48c6300b0 title: Step 19 challengeType: 0 dashedName: step-19 --- # --description-- After the `h3` element with the `Things cats love:` text, add an unordered list (`ul`) element. Note that nothing will be displayed at this point. # --hints-- Your `ul` element should have an opening tag. Opening tags have this syntax: ``. ```js assert(document.querySelector('ul')); ``` Your `ul` element should have a closing tag. Closing tags have a `/` just after the `<` character. ```js assert(code.match(/<\/ul>/)); ``` The `ul` element should be above the second `section` element's closing tag. ```js const secondSectionLastElemNode = $('main > section')[1].lastElementChild; assert(secondSectionLastElemNode.nodeName === 'UL'); ``` # --seed-- ## --seed-contents-- ```html

CatPhotoApp

Cat Photos

Click here to view more cat photos.

A cute orange cat lying on its back.
--fcc-editable-region--

Cat Lists

Things cats love:

--fcc-editable-region--
```