Create a function that validates whether a number n is within the bounds of lower and upper.
n
lower
upper
intWithinBounds(3, 1, 9) ➞ true intWithinBounds(6, 1, 6) ➞ false intWithinBounds(9, 9, 9) ➞ false