passing "during" a random time between a certain timeframe

Hello,

I’m looking for a nice way to simulate a Virtual User to stay in the system a random amount of time (each user has a random amount of time between a certain min an max).

I’m actually using
“.during((Random.nextInt(MAX - MIN) + MIN) minutes, exitASAP = false) {

}”

but it will generate for every user the same random number between MIN and MAX.
So is there a way to achieve a random number for each Virtual User? (like .pause(50 seconds, 150 seconds) does)

Thanks in advance,
BR,
Luca