static List<T> shuffleArray<T>(List<T> array) { final random = Random.secure(); array.shuffle(random); return array; }