Expand to array using spread

const originalArray = [1, 2, 3];
const clonedArray = [...originalArray];

console.log(clonedArray); // Output: [1, 2, 3]