C Sharp (C#) - LINQ Fundamentals
What will be the output of the following C# code?
var fruits = new[] {"apple", "banana", "apricot", "blueberry"};
var grouped = fruits.GroupBy(f => f.Length);
foreach (var group in grouped)
{
Console.WriteLine($"Length {group.Key}: {string.Join(",", group)}");
}