create array of randomized items javascript code example
Example: get random item from array javascript
const randomElement = array[Math.floor(Math.random() * array.length)];
const randomElement = array[Math.floor(Math.random() * array.length)];