export const randomInRange = (min: number, max: number): number =>
  Math.random() * (max - min) + min;
