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