# 获取一个从min到max的随机数

```js
    //用法
    import getRandom from 'random-js'

    const number = getRandom(5,10);   // 5-10的随机数
```