Lists within lists ERROR

After i made my code:

<!DOCTYPE html>
<html>
	<head>
		<title>Arthur Côrtes Rezende</title>
	</head>
	<body>
	    <img src="https://s3.amazonaws.com/codecademy-blog/assets/ninja_zpsa5dbe37a.jpg"/>
	        <p>My picture is a <strong style="color: red">■■■■■■■</strong> black ninja</p>
	            <ul>Interests
	                <li>He likes to drink vodka</li>
	                <li>He likes to kill his enemies</li>
	                <li>He likes to ■■■■</li>
	                <li>He loves his dog</li>
	            </ul>
	            
    <ol>
        <li>Vodkas
        
            <ul>
                <li>Ciroc</li>
                <li>Grey Goose</li>
                <li>Absolut</li>
            </ul>
            
        </li>
    </ol>
    
    <ul>
        <li>Vodkas
        
            <ul>
                <li>Ciroc</li>
                <li>Grey Goose</li>
                <li>Absolut</li>
            </ul>
        </li>
    </ul>
	</body>
</html>

This message appears to me: “Make sure you have at least one ordered list inside your unordered list of profile sections!”

Anyone can help-me with that?
plz :slight_smile:

Well, you have an unordered list (<ul>) in a ordered list (<ol>), you have a unordered list (<ul>) in a unordered list (<ul>), but you don’t have a ordered list (<ol>) in a unorderderd list (<ul>), so i suggest you add another nested list

Man, it works, really thank you for your help!