Hi,
Thanks a lot for the suggestion.
We'll add a RAND function for the Formula node in the next release of Instant Terra.
Also note that's it's possible to generate random numbers by using a Python node: create a new custom node of type 'Python', edit the graph of the node, set one value output node named Output and use a script such as:
from random import random
Output=random()