//destructuring array const alphabet = ['a', 'b', 'c', 'b', 'e']; const [a, b] = alphabet; console.log(a, b); //Expected output: a b