I am seeking a way to merge multiple variables into the same array index without altering their values, just grouping them together in the array.
For example:
var myArray[];
var one= 1;
var two = 2;
etc...
myArray.push("one" + "two")
document.write(myArray[0];
This code snippet should display 12 or 1 2 when executed, rather than combining them to result in 3.