<script LANGUAGE="JavaScript">

<!--

var ar = new Array("one", "two", "three", "four");

var num = Math.floor(Math.random() * ar.length);

document.write(ar[num]);

// -->

</script>