Whats problem my dear freand ??
I write This code for "Words project" in C# I dont know its errror: 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(); //your code goes here foreach (int count in words ) { If (count.Contains (letter)) { Console.WriteLine(count); } else { Console.WriteLine("No match"); } } } } }