Ranger

Results 4 comments of Ranger

```js function generateArray(arr, length, max, min) { if (arr.length === length) { return arr } const rand = Math.ceil(Math.random()*(max - min)) + min if (arr.indexOf(rand) === -1) { arr.push(rand) }...

Mark Text is very impressive. I want to contribute to this project.

@Jocs OK,thanks for your response.