Ruby - Arrays
What is the output of the following Ruby code?
arr = [3, 1, 4, 2] sorted_arr = arr.sort reversed_arr = sorted_arr.reverse puts reversed_arr.inspect
