master
export default (min, max) => { const rand = min + Math.random() * (max + 1 - min); return Math.floor(rand); };