public static random(shape as Tuple) as NDArray<T>:
Creates a NDArray with random values in [0, 1) using a tuple shape.
[0, 1)
a = NDArray<Double>.random((2, 2)) print(a)
A random NDArray.