C Sharp (C#) - LINQ Fundamentals
What will be the output of this code?
var words = new List<string> {"apple", "banana", "cherry"};
var result = words.Select(w => w.Length).OrderBy(len => len).ToList();
Console.WriteLine(string.Join("-", result));