Inspiration

This is a project used for generating a random number done as a challenge for Beginners week GHW

What it does

It will generate a random number when we click the run button

How we built it

I built it with dart language

Code I written

import 'dart:math';

void main() {
  final random = Random();
  final max = 10000;
  print(random.nextInt(max));
}

Built With

  • dart
Share this project:

Updates