export function random(max) {
    return Math.round(Math.random() * max)
  }