const people = ["John", "Nicole", "Jad"]; for (const person of people.reverse()) { console.log(person); }
Jad Nicole John