The intended purpose of the following module is to determine whether the value parameter is within a specified range. The module will not work, however. Find the problem. Module checkRange(Integer value, Integer lower, Integer upper) If value < lower AND value > upper Then Display "The value is outside the range." Else Display "The value is within the range." End If End Module