Source: site.view [edit]
Function name: getRandom
Arguments: dt,max
Description: Given a date as a seed, return a list of MAX random numbers from 0 to 10000. Uses caching to return results for the date.
Page type: webl
Render function:  
Module: sportstreak

Page source:

var res = [];

while max > 0 do
   res = res + [Wub_RandomInt(10000)];
   max = max - 1
end;

res;