randome of an array code example
Example 1: get random entry from array javascript
const rnd = (arr) => { return arr[Math.floor(Math.random() * arr.length)] };
Example 2: get random item from array javascript
let items = [12, 548 , 'a' , 2 , 5478 , 'foo' , 8852, , 'Doe' , 2145 , 119];
let randomItem = items[Math.floor(Math.random() * items.length)];