File size: 107 Bytes
06227db | 1 2 3 4 5 | const _ = require('lodash');
const arr = [1, 2, 3, 4, 5];
console.log('Shuffled array:', _.shuffle(arr));
|
06227db | 1 2 3 4 5 | const _ = require('lodash');
const arr = [1, 2, 3, 4, 5];
console.log('Shuffled array:', _.shuffle(arr));
|