export function randInRange (min, max) {
  return Math.random() * (max - min) + min
}