600.107 Intro Programming in Java Warm-up #4 Solution Recommended methods for the random exercise log program - pg4a 1) Generate a random integer in an inclusive range. The parameters should be the low and high ends of the range, and the method should return the value generated. 2) Generate a random real number with one digit of precision after the decimal point in a range [low,high). The parameters should be the low and high ends of the range, and the method should return the value generated. 3) Generate a random exercise type, returning a string of the type's name. 4) Create a method which given a number of minutes and a speed range, generates and returns a corresponding mileage (for use with Running and Biking). 5) Create all the random data for Running, print to file (should be passed as a parameter) or return string with the data. 6) Create similar methods to generate all the data for each of the other exercises.