Some array methods return new arrays instead of changing the original. This lesson uses slice() and concat() to practice that non-mutating pattern.
const numbers = [1, 2, 3, 4, 5];
const middle = numbers.slice(1, 4);
const combined = middle.concat([10, 11]);
Use slice(1, 4) to get the middle three values from a five-item array.