This is a common scenario in Make, don’t worry The key thing to know is that a Router by itself can’t choose a path randomly. It only follows filters.
What you can do instead is generate a random number first, and then let the router decide based on that value.
So, before the router, add a Tools → Set variable module and create something like randomPath = random(1;3) (assuming you have 3 routes).Then, on each router path, just add a filter: one checks if randomPath = 1, another = 2, another = 3.
Each time the scenario runs, Make will pick one number, and only the matching route will run. Simple and reliable.
If later you need more control, you can also do the same thing with a Switch module. Same idea, different UI.
I would try to avoid duplicating similar modules across routes.
Instead, try to use the “Set Multiple Variables” or “Switch” module with the random number, so that you can insert dynamic values into subsequent module fields.
This makes it easier to maintain, modify, and extend your scenario.