It is the code in .vbs which allows you to print falling series of random numbers as shown above.

1.Open notepad.exe.
2.Type the following code in the notepad.

echo off
color 02
:MAT
echo  %random%%random%%random%%random%%random%%random%%random%%random%
%random%%random%%random%%random%%random%%random%%random%%random%
goto MAT
3.Save above file as .vbs.
4.Open the vbs file and you will get the desired output.

Followers