In the programming world,
concatenation means adding
two items.
We can use + to concatenate
two arrays.
In this case, number1
and
number2 did not change at all.
A new array was created
by concatenating the two arrays.
Contrast this with
push
which changes the original array.