Given an array and a number, n, perform n left rotations on the array. --- When we have an array = [1,2,3,4,5] and n = 4, the result will be [5,1,2,3,4]