The sum_of_odd_numbers function should calculate the sum of all the odd numbers starting at 1 up to (but not including) the given end number and return the result.
Fix the loop so that it iterates over the correct numbers.
How much should you increment by in each iteration of the loop to get the next odd number?