What does the following code do?
int[] numbers = {4, 2, 7, 1, 9}; Arrays.sort(numbers);
Reverses the order of elements in the numbers array
numbers
Counts how many elements in numbers are greater than 5
Computes the sum of all elements in the numbers array
Sorts the elements in the numbers array in ascending order