A breakdown of how to reverse an array of numbers using a for loop in JavaScript. — Lets take the array: [11, 5, 19, 98]for example. We want the reverse: [98, 19, 5, 11] 1. Define the function and parameter for the array of numbers function reverseArrayOfNumbers(arr){ *code body* } 2. Create an empty array This is to store the numbers in once they’ve been reversed let reverseArray = []; 3. Create a for loop