var arr1 = ["Hello"," "]; var arr2 = ["World","!"]; var both = arr1.concat(arr2); //both = ["Hello"," ","World","!"];