local p = {} function p.randomNumber(frame) math.randomseed(os.time()) local min = tonumber(frame.args[1]) or 0 local max = tonumber(frame.args[2]) or 100 return math.random(min, max) end return p