I was following a tutorial and I seems to stuck here:
const list = document.querySelector(".user-list li")
console.log(list)
<body>
<ul class="user-list">
<li>Wonder</li>
<li>Matt</li>
<li>Alex</li>
</ul>
</body>
It only takes "Wonder", why is that?