$ npm install random-item
Get a random item from an array
import randomItem from 'random-item'; randomItem(['🐴', '🦄', '🌈']); //=> '🦄' randomItem.multiple(['🐴', '🦄', '🌈'], 2); //=> ['🌈', '🦄']