random(min, max);Get a random number
Arguments
minThe minimum of the rangemaxThe maximum of the rangeReturns
numberThe random valuerandom() -- random number between 0 and 1
random(3) -- random number between 0 and 3
random(3, 12) -- random number between 3 and 12
random({ 'A', 'B', 'C' }) -- random element in table