var arr = new Array(3)arr[0] = "George"arr[1] = "John"arr[2] = "Thomas"
document.write(arr + "")document.write(arr.reverse())