You are given an array with random numbers [1,4,6,7,6]. Return an array in the same order but with minimized values: [1,2,3,4,3]. So since 4 is greater than 1 but less than 6 it becomes 2, 6 is greater than 4 so it's value should be 3. [3,5,3,8] would become [1,2,1,3]. My guess is we need to somehow calculate the value that then would be subtracted from each number in the array.