const random = (min, max) => min + Math.round(Math.random() * (max - min)); export default random;