How can I select the first 5 random elements
<ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
...
<li>N</li>
</ul>
alert($("li:random").text());
but it takes all random elements. I only want the first 5.
Is there another way to do the same thing?