Scripting/Language Reference/Utility FunctionsreverseReturns the reversed list of a list. a = reverse([1, 2, 3]) # a = [3, 2, 1]