Use destructuring to extract only the third item from the array, into a variable named suv
.
const vehicles = ['mustang', 'f-150', 'expedition'];
const [@(5)] = vehicles;
const vehicles = ['mustang', 'f-150', 'expedition'];
const [,,suv] = vehicles;
const vehicles = ['mustang', 'f-150', 'expedition'];
const [, ,suv] = vehicles;
const vehicles = ['mustang', 'f-150', 'expedition'];
const [, , suv] = vehicles;