What type of list will this code display?

Ordered listUnordered list<html>
<body>
<h3>Grocery list</h3>
<ul>
<li>Milk</li>
<li>Cereal</li>
<li>Kool-aid</li>
</ul>
</body>
</html>
]]>

Great job!

The <ul> tags surrounding the list items will create an unordered list.