What's going on with these arrays?
var a = [1,2,3,4,5,6]; console.log(a[0]); var arr = a; console.log(arr[0]);
Run
Output