Well, that solution is better than what you had. It could be better though. Recommendations:
1. Maybe I was unclear about the LoadBGM command? The LoadBGM command can happen at any time just so long as it's before PlayBGM by at least a few seconds. It does not need to be in the same event. You should use it significantly before you need it, not use it and throw a forced wait in within a single event. If memory isn't a concern, you could LoadBGM at the beginning of the game; it'll still be there when you need it. Granted, that forced wait is the only real reason it's working now (you were throttling the system without it), but...
2. You should be using Autorun for the "Play" event. In this case, the Wait would just bog down the game. Now, Autorun blocks the game flow until it's done, but PlayBGM is a very quick action in the grand scheme of things; you just need a way to tell it that it's done. There are two good ways to do this:
2a. Use the "Erase Event" command to disable the event entirely until the next time the map is loaded (good if you want to run the event every time you load the map); or...
2b. Set a switch (preferably a Self Switch), make a second page for the event, and make the Condition of the page the switch that you set. Leave the second page blank with an Action Button trigger (good if you only want the event to run once ever).
As for the randomness, you could absolutely do that. Set a variable to a random value between 1 and 3, and then use a Branch command. Like so: