using static System.Console;
public static void Main() {
var optionArray = new string[] { "in the jungle ", " the mighty jungle", " the lion sleeps tonight " };
var newArray = optionArray.Select(s => s.Trim()).ToArray();
foreach (var item in newArray) {