using System.Collections;
public static void Main()
int[] first = {3, 4, 5, 6};
int[] second = {5, 6, 8, 20};
ArrayList newlist = new ArrayList();
newlist.Add(first.Select(x => x * x));
int [] newlistarray = newlist.Cast<int>().ToArray();
Console.WriteLine(newlistarray[1]);