As an example I would like to get values between 32.2000 and 32.2999
I assume it would be something similar to
(Math.random() + 32.2).toFixed(4)
but it seems to generate any value between 32.xxxx and 33.xxxx
Am I making an obvious error on my end or is it more complex than I initially assumed?