let's play a guessing game! create a public class name guesser that provides a single class method named guessvalue. guessvalue accepts a single secret instance which provides a guess method that accepts an integer. if the integer is not the secret value, guess will throw an exception. otherwise, it does not. guessvalue should return the secret value stored by the secret instance. however, you should only guess values between 0 and 32, inclusive. if you guess values outside that range, the secret instance will break you will no longer be able to extract the secret! also note that some secrets will contain invalid values. if you are presented with a secret that does not have a secret value between 0 and 32, inclusive, throw an assertion error. (one way to do this is simply assert false.)