const arr1 = [1, 2, 3]; const arr2 = [4, 5, 6]; const arr3 = arr1 + arr2; console.log(arr3, typeof arr3); // 1,2,34,5,6 string