// Useage: reverseArray([0,1,2,3,4,5,6]) // Output: [6,5,4,3,2,1,0] export function reverseArray(arr: any[]){ return arr.reverse(); }