A classic coding challenge with a twist. Prints out the integers from 1 to 100 If an integer is evenly divisible by 3, then code will print 'Fizz'. If an integer is evenly divisible by 5, then code will print 'Buzz'. And if an integer is evenly divisible by both 3 and 5, then code will print 'FizzBuzz'.


Enter a starting and ending value. Then enter a value for 'Fizz' and a value for 'Buzz'. Then click the 'Let's Go' button. If nothing is entered, program will default to classic 'FizzBuzz' meaning 'Fizz' will be 3, 'Buzz' will be 5 and it will print from 1 to 100.