let arr = ["John", "Smith"] let [firstName, surname] = arr; console.log(firstName); console.log(surname);