Reverse the array

Report a typo

Reverse the given array of numbers then print the result.

Sample Input 1:

Sample Output 1:

[ 10, 8, 6, 4, 2 ]
Write a program in JavaScript
let numbers = [2, 4, 6, 8, 10];
___

Create a free account to access the full topic