FizzBuzz is a common coding challenge, where the program will count to 100, but every number divisible by 3 will be replaced by "Fizz", and every number divisible by 5 replaced by "Buzz". Every number divisible by both will be replaced by "FizzBuzz". I just did this for fun, and to see how much i could optimize the code behind it.