.slice() extracts a portion (doesn't modify original), while .splice() modifies the array in place.
.slice(1, 3) on items to get elements at index 1 and 2 → middleitems using spread or slice.splice(0, 1) on the copy to remove the first element → withoutFirstSubmit your code to see test results