"Fizz buzz is a group word game for children to teach them about division. Players take turns to count incrementally, replacing any number divisible by three with the word 'fizz', and any number divisible by five with the word 'buzz', and any number divisible by both 3 and 5 with the word 'fizzbuzz'." -From Wikipedia In this project the cat plays Fizz Buzz. Just sit back and relax and watch it count. In this project I checked to see if the number was devisable or not by preforming the division and then checking if there was a decimal. After I completed the code I was told that there's actually a code block "___ mod ___" that can give you a remainder when you divide instead of a decimal. It may have been easier to check for divisibility using the "___ mod ___" block but I decided not to redo it.
This challenge was from @browntail247 . Link to Coding Challenge Number 1: https://scratch.mit.edu/projects/818016834/ Explanation of the game "Fizz Buzz" from Wikipedia.