Pure Programmer
Blue Matrix


Cluster Map

Project: Random Integers

Write a program to generate a random list of integer values. The program should accept three values on the command line: minimum value, maximum value and the number of integers to generate. The integers should be printed one per line.

Output
$ node RandomIntegers.js 1 100 20 100 98 93 77 39 42 77 30 90 69 13 27 56 38 57 76 86 53 20 70

Solution