C Sharp (C#) - LINQ Fundamentals
Identify the error in this LINQ method syntax:
var numbers = new List<int> {1, 2, 3};
var result = numbers.Select(n => n * 2).Where(n => n > 3);
Console.WriteLine(string.Join(",", result));