Guest User

Untitled

a guest
Jul 18th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. function getXrandomNumbers(x, min, max) {
  2. let array = [];
  3. array[] = Math.floor(Math.random() * max) + min;
  4.  
  5. return array;
  6. }
Add Comment
Please, Sign In to add comment