randomer.js
v1.0.1
Published
```js const randomer = require("randomer.js");
Downloads
1
Maintainers
Readme
randomer.js
select a random thing in an array
const randomer = require("randomer.js");
var test = [
"hello",
"hi",
"other stuff"
]
console.log(randomer.array(test))
random number
select a random number from 0 to the number selected
const randomer = require("randomer.js");
console.log(randomer.number(100))