public static void Main()
string[] dictionary = {"I was born in the", "70s", "80s", "90"};
string[] specialChars = {"."};
string[] addList = new string[3];
addList[0] = dictionary[0];
addList[1] = dictionary[2];
addList[2] = specialChars[0];
foreach(var item in addList)
Console.WriteLine(item.ToString());
Console.WriteLine("-------\n");
string answer = addList[0];
foreach(var item in addList)
if (item != specialChars[0])
answer = answer + " " + item;
Console.WriteLine(answer);