Create the ordered list of top-selling bottoms. Start with a Pants list item and end with a Shorts list item.

The order of list items matters. Make sure to list Pants and then Shorts.

<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</li>
  </ul>
  
</body>
</html>]]>