0 / 60 seg.

¿Cuál es la salida del siguiente código?

string hello = "Hello";
string world = "world!";
string greeting = string.Concat(hello, " ", world);
Console.WriteLine(greeting.ToString());