Create a random integer between 1 and 100.
Hint: Use the one of the Math methods
Integer min = 1; Integer max = 100; Double a = Math.floor(Math.random() * (max - min + 1)) + min; System.debug('Random value between ' +min+ ' and '+ max + ' is ' + a);