你想要反转数组元素。
使用 JavaScript Array 的 reverse() 方法:
["one", "two", "three"].reverse() # => ["three", "two", "one"]
reverse() 是标准的 JavaScript 方法,别忘了带圆括号。