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