Olá.
No teste que fiz, utilizando o sinal > selecionei todos os elementos, inclusive os da sublistas, ao contrário do resultado do exercício.
Segue código:
<!DOCTYPE html>
<html>
<head>
<style>
ul > li{
background-color: yellow;
}
</style>
</head>
<body>
<ul>
<li>Item da lista
<li>
<ol>
<li>Item da sublista
<li>Item da sublista
</ol>
<li>Item da lista
<li>Item da lista
</ul>
</body>
</html>
Onde errei?