配列の一部を配列として取得したい場合は、sliceメソッドを利用します。
slice
const arr = [0, 1, 2, 3, 4, 5]; const sub = arr.slice(3); // [3, 4, 5]