--- id: bad87fee1348bd9aedf08827 title: Create a Bulleted Unordered List challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/cDKVPuv' --- ## Description
HTML has a special element for creating unordered lists, or bullet point style lists. Unordered lists start with an opening <ul> element, followed by any number of <li> elements. Finally, unordered lists close with a </ul> For example:
<ul>
  <li>milk</li>
  <li>cheese</li>
</ul>
would create a bullet point style list of "milk" and "cheese".
## Instructions
Remove the last two p elements and create an unordered list of three things that cats love at the bottom of the page.
## Tests
```yml tests: - text: Create a ul element. testString: assert($("ul").length > 0, 'Create a ul element.'); - text: You should have three li elements within your ul element. testString: assert($("ul li").length > 2, 'You should have three li elements within your ul element.'); - text: Make sure your ul element has a closing tag. testString: assert(code.match(/<\/ul>/gi) && code.match(/
## Challenge Seed
```html

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.

```
## Solution
```js // solution required ```