Random scene string

Hey,

I use this string to randomly generate a scène to go to.

“scene_” + ToString( 1 + Random(Variable(Shopgames)+49) )

Is this the right use to add an variable?
Because the extra scènes arent showing up. So i want confirmation that this is the right use of it. Of im doing something wrong.

Normal without variable:
“scene_” + ToString( 1 + Random(49) )

Create a transition string variable like
Variable: game_scene_var_level_to_go = ( 1 + Random(Variable(Shopgames) + 49)
Then assign your logic to that variable:
Like : Change to scene “scene_” + ToString(Variable(game_scene_var_level_to_go ))