I'm trying to write a function that takes in two double values as high and low inclusive boundaries, and returns a random double in that range. I tried to just use the same function I wrote for integers, but of course the % operator does not play well with doubles. Does anyone know an easy way to write this kind of function for double values?