Is it possible to insert an array inside another keeping its original array form? I looked on google and didn't find what I wanted, so I'll try here. Should look like this:
arr1 = [1, 2 , 3]
arr2 = [4, 5, 6]
console.log(arr3) // [[1, 2, 3], [4, 5, 6]]
var arr3 = [arr1, arr2];? Does it matter if the inner arrays are the originals, or copies? (i.e., shouldarr3[0][0] = 5;mutatearr1or not, or you don't care?)