Randomization based on seed value

Hello

i have a class with random variable which can range between [1:100]
I have a test-case which when I simulate with seed = 1 randomizes my class properties twice (meaning generating 2 random values for the variable).
Now if I run the same test with seed = 2/3/any does the new seed randomize my class properties exactly twice or can that vary (can generate more/less random variables)?
I wanted to know if this randomization is test specific or seed specific

In reply to Rfed:

You would have to show your code before anyone can provide a specific answer.

How is the number of randomizations determined? Does your code loop a specific number of times? Or is the loop iteration count randomized? This will control the number of random values generated.