pub fn rand_array<T, const N: usize>() -> [T; N]where T: Randomizable,
Generates a random array of type T with N elements.
let arr: [u64; 4] = rand_array();