Random scenes

When the movie loads, it takes you to a random scene. How?

Thanks.

This actionscript on the first frame:

//write down all the scenes
scenes = ["scene1", "scene2", "scene3"];
//picks a random scene from the previous array
nextscene = scenes[Math.floor(Math.random()*scenes.length)];
//Goes to that scene
gotoAndPlay(nextscene);

:ninja:

thanx!