I have a loop in a function that is supposed to insert a number in the space in the array where position is currently sitting. All the numbers have to stay in order and it is supposed to take the numbers and shuffle them down to make room for the new number. I have an array of 20 delcared. The output I am supposed to receive from this loop is 20, 19, 18, ---- 2, 1. Instead, I get 20, 0, 0, 0, ect. Any help, suggestions, or tips provided is greatly appreciated.