concat()
Creates a new array by merging existing arrays
let fruits = ["apple", "banana"];
let vegetables = ["carrot", "potato"];
let groceries = fruits.concat(vegetables);
console.log(groceries); // ["apple", "banana", "carrot", "potato"]
// Can concatenate multiple arrays
let dairy = ["milk", "cheese"];
let fullList = fruits.concat(vegetables, dairy);