Suppose we want to generate a random floating number in the range of 1 and 99.
Choose the correct options below with the required integers so that the random floating number will be in the interval of [1, 99)
int1 + rand.Float64() * int2
What int1 and int2 should be?