Create a data set that contains five rows of random numbers.
data numbers; drop i j; array a[5]; do j = 1 to 5; do i = 1 to 5; a[i] = ranuni(12345) * (i+123.234); end; output; end; run;