Create a method called ReadInteger that will ask the user to input a number. The method should show the prompt parameter, read the user’s input, and return the integer. Console.ReadLine will give you a string so you will need to convert the string to an integer. DO NOT THROW AN UNHANDLED EXCEPTION. If the user does NOT enter an integer OR the integer is not within the min-max range, show an error message to them, show the prompt again and ask for the user’s input. You’ll need a loop for this. Do not return until the user enters a valid integer.
