Does Solaris have a random number generator?

I am trying to find a way to generate random numbers within a shell script.
Does Solaris have a utility that will generate random numbers?

Thanks in advance.
B

for sh/ksh/bash

 print $RANDOM

It really depends on how random you want the data to be, $RANDOM in a tight loop doesn't give great results, reading from /dev/random /dev/urandom will give better results. Perderabo posted a very good random number generator script also.

Thanks for the tips.
The degree of randomness is not critical for me, so the print $RANDOM is fine.
I found Perderabo's script too, but it's probably more than I need at this stage.

Thanks again to all who replied.
B