C Sharp (C#) - File IO
What will be the output of this code if "data.txt" contains the lines: "One", "Two", "Three"?
var lines = File.ReadAllLines("data.txt");
Console.WriteLine(lines[1]);