C Sharp (C#) - Collections
Examine the following C# code snippet and identify the problem:
int[] numbers = new int[3]; numbers.Add(10); Console.WriteLine(numbers.Length);
