Unordered lists might sound a bit chaotic, but they're actually just bullet lists. To create one, we use the <ul> tag.

<html>
 <body>
  <ul>
   <li>Harry</li> 
   <li>Hermione</li>
   <li>Ron</li>
  </ul>
 </body>
</html> 
]]>

Great job! We can use the <ul> tag when we don't need to list items in a specific order or rank them by importance.

Make sure to spell out <ul>.