Random Number Generator

Generate random integers within a specified range

Examples

Here are some common use cases for the random number generator:

🎲 Roll a dice
Input: Min: 1, Max: 6
Output: 4
Use case: Board games and gambling
🎯 Pick a winner
Input: Min: 1, Max: 100
Output: 73
Use case: Raffles and giveaways
📊 Generate test data
Input: Min: 100, Max: 999, Count: 5
Output: 234, 567, 890, 123, 456
Use case: Software testing