How can I make the system randomly pick between 3 and 6 seconds.
Every 3 to 6 seconds. > ...
every.. choose(3,6)
Develop games in your browser. Powerful, performant & highly capable.
That would choose 3 OR 6 seconds. If you want round numbers, choose(3,4,5,6), otherwise random(3,6).
Thank you blackhornet