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