const months = ['March', 'April', 'May']; const otherMonths = ['June', 'July']; const totalMonths = months.concat(otherMonths); console.log(totalMonths);