If I have an array and an array list:
int[] myArray = new int[2];
myArray[0] = 1;
myArray[1] = 2;
ArrayList myArrayList = new ArrayList();
myArrayList.Add("1st element");
myArrayList.AddRange(myArray);
By calling the Addrange() method in myArrayList, does this add the contents of myArray to the second element of myArrayList? If so how do you access the second element of myArray through myArrayList?