I learn this Array prototype slice
This is what I tried:
const animals = ['ant', 'bison', 'camel', 'duck', 'elephant'];
console.log(animals.slice(1, 2));
//outputs: ["bison"]
Why is this not outputting ["bison", "camel"] since the doc state it's a zero because operation?
