C Sharp (C#) - Exception Handling
Identify the problem in this C# exception handling snippet:
try { string[] fruits = new string[2]; Console.WriteLine(fruits[3]); } catch (ArgumentOutOfRangeException e) { Console.WriteLine("Error: " + e.Message); } finally { Console.WriteLine("Process complete"); }