The test suite assigns a random number to the variable Number. Write a script that uses a while loop to repeatedly divide this number by 7 until the value remaining is less than 1.
Assign the result to the variable WhatsLeft. Keep track of the number of divisions required and assign to the integer variable DivisionCount Solution Enter commands in the space below to implement the while loop that is specified in the problem while WhatsLeft < 1 DivisionCount = Number/7 end