Como obter o elemento aleatório no jquery?

Como posso retornar um elemento aleatório no jQuery, fazendo algo como$(.class).random.click()?

Então se.class tinha 10 links, clicaria aleatoriamente em um deles.

Aqui está o que eu fiz:

var rand_num = Math.floor(Math.random()*$('.member_name_and_thumb_list a').size());
$(".member_name_and_thumb_list a").eq(rand_num).click();

questionAnswers(6)

yourAnswerToTheQuestion