We've just used <ol> to create a list, but it's still empty. To add a list item, we can use the <li> tag.

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

Great work!

Be sure to put the list item, Harry, within the two tags.