const arrFirst = ['string1', 'string2']; const arrSecond = ['string3','string4']; const newArr = [...arrFirst, ...arrSecond]; console.log(newArr);