LiveCode BuilderStatementsReverseElementsOfListOn this pageReverseElementsOfList Type statement Summary Reverse a list Syntax reverse <Target> Description Reverses the order of elements in the Target. Parameters NameTypeDescriptionTargetA list Examples variable tListput [1, 2, 3] into tListreverse tListexpect that tList is [3, 2, 1]