Declare upTo function that takes an end number argument.
upTo
end
You must log each number starting at 0 until you reach the end value (included)
0
Example: upTo(3) would log: 0 1 2 3
upTo(3)