Help needed for the 5th C# project.
Please this is my attempt at a solution: 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(); for(int count=0;count<10;count++) { if (words[count].Contains(letter)) { Console.WriteLine(words[count]); } else { continue; Console.WriteLine("No match"); } } } } My problem deals with the "No match" code for no words found.