按起止下标复制数组片段。
array.slice(start, end)
items = [1, 2, 3, 4] result = items.slice(1, 3) // 输出:[2,3] print result