--- id: bad87fee1348bd9aedf08827 title: Create a Bulleted Unordered List challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/cDKVPuv' forumTopicId: 16814 dashedName: create-a-bulleted-unordered-list --- # --description-- HTML has a special element for creating unordered lists, or bullet point style lists. Unordered lists start with an opening `` For example: ```html ``` 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. # --hints-- Create a `ul` element. ```js assert($('ul').length > 0); ``` You should have three `li` elements within your `ul` element. ```js assert($('ul li').length > 2); ``` Your `ul` element should have a closing tag. ```js assert( code.match(/<\/ul>/gi) && code.match(/