public static native fillRandom(values as ArrayList<FLOAT_TYPE>, count as Int) as Void
Fills an ArrayList with random floating values in [0, 1).
Existing elements are replaced in place.
values = [0.0, 0.0, 0.0] Random.fillRandom(values, 3) print(values)