Write a function that validates whether a number n is within the lower and upper bounds. Return true if so, false otherwise.
n
lower
upper
true
false
intWithinBounds(3, 1, 9) ➞ true intWithinBounds(6, 1, 6) ➞ false intWithinBounds(3, 3, 8) ➞ true