const cars = ["benz", "bmw", "volvo", "skoda"]; const lastThree = cars.slice(-3); console.log(lastThree); // ["bmw", "volvo", "skoda"]