In this project, when the green flag is clicked an animation of a flower growing begins and stops once it has fully bloomed. But something is not quite right! Instead of stopping when all the petals have bloomed, the animation starts all over. How do we fix this program?
This is fixed. In the code, under the decision box of the repeat block, the condition was repeated until Number > 12; that's why it was continuing to repeat because it was never >12. I changed the operator to = 12 and it fixed the code.