I'm doing the words code coach for C# and I can't figure out what I've done wrong
using System; using System.Collections.Generic; namespace Code_Coach_Challenge { class Program { static void Main(string[] args) { string[] words = { "home", "programming", "victory", "C#", "football", "sport", "book", "learn", "dream", "fun" }; string letter = Console.ReadLine(); int count = 0; //your code goes here while (count < words.GetLength) { if (words.Contains("letter")) { Console.WriteLine(words[count]) } else { Console.WriteLine("No match"); } count++ } } } }