Неправильный порядок элементов в задании
Я начал проходить задание
Task: after the heading, create a paragraph with the Cities of England: text. Below, create an unordered list with three items: London, Birmingham, Manchester. Next, add another paragraph with the Cities of Italy:, after which create an ordered list with four elements: Rome, Florence, Naples, Venice.
Я написал такой код к нему:
<body>
<p>Cities of England:</p>
<ul>
<li>London</li>
<li>Birmingham</li>
<li>Manchester</li>
</ul>
<p>Cities of Italy:</p>
<ol>
<li>Florence</li>
<li>Rome</li>
<li>Naples</li>
<li>Venice</li>
</ol>
</body>
Но в результате пишет:
InvalidOutput Task is done incorrectly: invalid order of elements
Скажите пожалуйста что надо исправить.