string[] arr1 = new string[] { "one", "two", "three" };
string [] arr4 = new string[3];
arr4 [0] = "one";
arr4 [1] = "two";
arr4 [2] = "three";