const myArray = ['A','B','C']
myArray.toReversed()
The original array stays the same
Reverses an array by copying.
myArray.toSorted()
The original array remains unsorted
Sorts an array by copying.