const uint8 = new Uint8Array([10, 20, 30, 40, 50]); const array1 = uint8.slice(1, 3); console.log(array1); // Expected output: Uint8Array [20, 30]