export function shuffleArray(data: Array): Array { return data.sort(() => Math.random() - 0.5); }