const num1 = [2, 4, 5, 3, 8, 9, 11, 33, 44]; const num2 = [22, 33, 44, 55, 66, 77, 88]; const concatNumbers = num1.concat(num2) console.log(concatNumbers) //Expected output: /*[ 2, 4, 5, 3, 8, 9, 11, 33, 44, 22, 33, 44, 55, 66, 77, 88 ] */