Syntax-Check (1) Lösung

Wie schaut die CSS-Anweisung aus, damit nur das gezeigte Span-Element rot wird?
CSS
ul li span {color:red}
/* oder */
ul span {color:red;}
/* oder */
li span {color:red;}
HTML
<html>
…
<body>
…
<ul>
<li>
<!-- dieses Span via CSS ansprechen! -->
<span>prompta fastidii</span>
</li>
</ul>
…
</body>
</html>