Can you make a random music player?

I have a few songs for my game and I was wondering if I could loop through them at random. Could I possibly do this within different scenes?

It’s possible but not straight forward.
You can not use a variable to load a resource file such as a sound or music.
So you need to create a large conditional block that maps numbers to song files…
ie
if track = 1 then load music grassland
if track = 2 then load music lavaworld
if track = 3 then load music icecaves

Then you can set the variable track to a random number, and run down your conditional ladder.
Hope that makes sense.