public static void Main()
string[] names = new string[]{"Ben", "Thor", "Zoe", "Kate"};
Console.WriteLine("What player are you looking for?");
string playerName = Console.ReadLine();
while ((found == false) && (current <= max))
if (names[current] == playerName)
Console.WriteLine("No, they do not have a top score");
Console.WriteLine("Yes, they have a top score");