Edits history of script submission #22421 for ' Random Integer (helper)'

  • bunnative
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    
    export async function main(min = 0, max = 100) {
      return Math.floor(Math.random() * (max - min + 1)) + min;
    }
    

    Submitted by hugo989 7 days ago