public class RandomNumberGenerator { private int low, high; public RandomNumberGenerator(int l, int h) { low = l; high = h; } //Generates 5 random numbers between low and high (inclusively) //Prints out the 5 numbers, separated by commas, on the SAME line //Also prints the sum of the 5 numbers //Returns the sum of the 5 numbers as well public int fiveRandomNums() { } }