Create the ordered list of top-selling accessories.

Hit the expand icon and try adding a section for hipster shoes.

The order of list items matters. Make sure to list Bags and then Watches.

<html>
<body>
  <h1>Hipster Clothes Inc.</h1>

  <ul>
   <li>Tops
    <ol>
     <li>Shirts</li>
     <li>Suits</li>
     <li>Blouses</li>
    </ol>
   </li>
   <li>Bottoms
    <ol>
     <li>Pants</li>
     <li>Shorts</li>
    </ol>
   </li>
   <li>Accessories
    <ol>
     <li>Bags</li>
     <li>Watches</li>
    </ol>
   </li>
  </ul>

</body>
</html>]]>