lets say theres 4 divs
<div class="list">
<div class="hello">hello</div>
<div class="hello">how</div>
<div class="hello">are</div>
<div class="hello">you</div>
</div>
how can i select the third one and display the text with jquery?
$('.hello')[2].text()
trying to use something like that.