Unable to finish this project please help
The program you are given defines an array with 10 words and takes a letter as input. Write a program to iterate through the array and output words containing the taken letter. If there is no such word, the program should output "No match". Sample Input u Sample Output fun //////////////////////////////// using System; using System.Collections.Generic; using System.Linq; 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.Contains(letter)) { Console.WriteLine(words[count]); } else { Console.WriteLine("No match") ; } } } } }