C Sharp (C#) - LINQ Fundamentals
Identify the error in this LINQ query:
var result = from x in numbers where x > 10 select x;(numbers is an int array declared earlier)
