정답

const arr = [1, 3, 4, 6, 9]
const reverse = []

for (let i=arr.length-1; i>=0; i--) {
    reverse.push(arr[i])
}

console.log(reverse)