封装一个函数函数的返回值是两个值之间的随机整数,麻烦路友帮帮忙
```html function getRandomArbitrary(min, max) { return Math.round(Math.random() * (max - min) + min); }
```