Java - Exception Handling
What will be the output of this code?
try {
int[] arr = {1, 2, 3};
System.out.println(arr[3]);
} catch (ArrayIndexOutOfBoundsException e) {
System.out.println("Index error");
} finally {
System.out.println("Done");
}