public static void Main()
var color = new string[4];
var questions = new string[4];
questions[0] = "Sky or Berry";
questions[1] = "Grass or Cheeks?";
questions[2] = "Lemon or Grape?";
questions[3] = "As the Night or As Jack?";
var foundColorIndex = -1;
for (var index = 0; index < color.Length; index = index + 1) {
if (input == color[index]) {
if (foundColorIndex != -1) {
Console.WriteLine(questions[foundColorIndex]);
Console.WriteLine("Um, that's not a color...");