Menu
×
×
Correct!
Exercise:Insert the missing parts to handle the error in the code below.
try {
int[] myNumbers = {1, 2, 3};
System.out.println(myNumbers[10]);
} catch (Exception e) {
System.out.println("Something went wrong.");
}
Not CorrectClick here to try again. Correct!Next ❯{ int[] myNumbers = {1, 2, 3}; System.out.println(myNumbers[10]); } (Exception e) { System.out.println("Something went wrong."); } |