I would like to combine two or more variables into the same array index but not do anything to the values, just place them together in the same array index
So
var myArray[];
var one= 1;
var two = 2;
etc...
myArray.push("one" + "two")
document.write(myArray[0];
Should output 12 or 1 2 but not add them together to show 3.