ergsehryj5etjry ergsehryj5etjry 18-04-2020 Computers and Technology contestada JAVA Write a method that takes an int array and returns a reversed version of the array. For example: reverse(new int[]{1, 2, 3}) Should return an array with the values: [3, 2, 1] public int[] reverse(int[] arr) { }