Assume an array is defined as int[] nums = {2, 3, 4, 5};. Which of the following would display the values in the array in reverse?
a) [d, c, b, a]
b) [5, 4, 3, 2]
c) [5, 2, 3, 4]
d) [a, b, c, d]