public static void Main()
Console.Write("Input number of strings to store in the array: ");
int count = Int32.Parse(Console.ReadLine());
string[] arr = new string[count];
Console.WriteLine($"Input {count} strings for the array");
for (int i = 0; i < count; i++)
Console.Write($"Element[{i}] : ");
arr[i] = Console.ReadLine();
Console.WriteLine("Here is the string below created with elements of the above array: ");
string result = String.Join(", ", arr);
Console.WriteLine(result);
result = arr.Aggregate((toResult, nextWord) => toResult + ", " + nextWord);
Console.WriteLine(result);