C Sharp (C#) - LINQ Fundamentals
Given the code below, what will be the output?
var words = new[] {"apple", "banana", "cherry"};
var lengths = from w in words select w.Length;
Console.WriteLine(string.Join(",", lengths));