C Sharp (C#) - Exception Handling
Identify the error in this C# code snippet:
try {
int[] arr = new int[2];
arr[3] = 10;
} catch (Exception e) {
Console.WriteLine("Exception caught");
}