Below are a few lines of code written in C#. Is the code bug-free? What will this print in the console? Can you do it without VS?
static void AVeryCoolMethod(){ var numbers = new[] { 1, 2, 3, 4, 5, 6 }; var ngt5 = numbers.Where(n => n > 5); var n = ngt5.First().ToString(); Console.WriteLine(n, numbers);}
Cheers!