How would the following code print the array?

public static void displayArray(int[] array, int first, int last)
{
   System.out.print(array[first] + " ");
   if (first < last)
       displayArray(array, first, last - 1);

}
Neither of these answers are correct
  • In reverse order
  • In order

There are no hints for this question