@Jahod1 Try examining the example given in the lesson before attempting the challenge. The code in the example starts the loop from 0 and adds 1 every time until the while condition is not valid anymore. For the challenge, what you need to do is the opposite. You should start from the top (which is 5) and loop through until you reach 0 (inclusive) - count downwards and add them into the ‘myArray’! So first push number 5 into ‘myArray’, then number 4, and so on.
I hope that is clear!
The statement i++ means ‘increase i by 1’. You need to make idecrease. Do you remember a freeCodeCamp challenge showing you how to make a variable decrease?