In order for lists to be displayed correctly, the list items need to be inside the <ol> and </ol> tags.

Order the lines to put the list item in its proper place.

<html>
 <body>
  <ol>
   <li>Tortoise</li>
  </ol>
 </body>
</html>
]]>

Sweet! But how might we add more items?

Make sure the list item <li>Tortoise</li> is in between the <ol> and </ol> tags.