This is based on my last question.
I have these arrays:
var array1 = new Array ("Pepsi", "Coke", "Juice", "Water");
var array2 = new Array ("35", "17", "21", "99");
And I want to combine them to form a multidimensional array like this:
[
["Pepsi","35"]
["Coke", "17"]
["Juice","21"]
["Water","99"]
]
I tried this script:
Values=[];
for (i = 0; i < array1.length; i++) {
Values[i] = Array(array1[i], array2[i]);
}
But it gave a result like this (correct values, incorrect names):
[
["a","35"]
["c","17"]
["E","21"]
["I","99"]
]