The number you use for RANDOMIZE USING is called a "seed", because it grows the same random number sequence.
As in your example, your seed was 2.
Of course. Are you responding to me or to Raven?
With RANDOMIZE USING, for any given seed, every time you repeat that RANDOMIZE USING in your program, the sequence starts from the beginning.
Try that with RANDOMIZE, with any given seed. It doesn't start at the beginning. It continues on where it had left off before, in your program.
Raven said that with QBasic, he saved and reused the "seed," to achieve what I just described with RANDOMIZE USING. That's what I didn't understand. Unless he meant that he saved the actual random sequence, as opposed to saving the seed.