let arr = [0, 1, 2, 3, 4, 5]
let sub = arr[3...]
sub[0] // Fatal error: Index out of bounds

このSliceのインデックスが元の配列のインデックスのままになる仕様って誰得なの?