You want to combine arrays into one.
For example, you have
fruits = ['Broccoli', 'Carrots']
spices = ['Thyme', 'Cinnamon']
and you want to combine them into
ingredients = ['Broccoli', 'Carrots', 'Thyme', 'Cinnamon']
Method 1 - using .concat
ingredients = fruits.concat spices
Method 2 -...