How many list items does this code display on a web page?

TwoThree<html>
<body>
Grocery List
<ol>
  <li>Apples</li>
  <li>Soda</li>
</ol>
</body>
</html>]]>

The website will display two list items.