export function pickRandom()

in src/helpers.js [1:3]


export function pickRandom(arr) {
  return arr[Math.floor(Math.random() * arr.length)]
}