C Sharp (C#) - Collections
What will be the output of the following C# code?
var animals = new List<string> {"dog", "cat", "bird"};
animals.Remove("cat");
animals.Sort();
foreach(var animal in animals) Console.Write(animal + " ");