<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
</head>
<body>
<p><strong id='test'>Click here</strong></p>
<script>
var s = [22222,11111];
document.getElementById('test').onclick = function () {
alert(s.reverse()[0]);
}
</script>
</body>
</html>