# Array.reverse ## Function Reverse the order of array elements. ## Syntax ```bt array.reverse() ``` ## Parameters No parameters. ## Return value | Type | Description | | ------ | ------ | | Array | Returns the original array object. | ## Example ```bt items = [1, 2, 3] result = items.reverse() // Output: [3,2,1] print result ``` ## Notes - This method will modify the original array.