I\'m trying to reverse an array with the following code :
function reverseArray(array) { let newArray = []; let tempLast; for let value of array { t