C Sharp (C#) - Exception Handling
What will be the output of the following C# code?
try {
int[] arr = new int[2];
Console.WriteLine(arr[5]);
} catch (IndexOutOfRangeException e) {
Console.WriteLine("Index error caught");
} catch (Exception e) {
Console.WriteLine("General error caught");
}