Im trying to combine 2 arrays in javascript into one.
var lines = new Array("Line1","Line2","Line3");
lines = new Array("Line5","Line6","Line7");
This is a quick example, i want to be able to combine then so that when the second line is read the array can be used as lines['4'] (returning "Line5") How would i do this?