1
2
3
export function randomize(a) {
return a.sort(() => Math.random() - Math.random());
}