public static void Main()
string [] words = {"hello", "have", "a" , "nice" , "day"};
string [] words2 = {"hello, have , a , nice, day"};
Console.WriteLine(" the array words has : " + words.Length + " words");
foreach(string word in words)
Console.WriteLine(" the array words2 has : " + words2.Length + " words");
foreach(string word in words2)