Is there a way to make a block that plays a random sound from a list?

Hi! I’m working on a fun Snap! project and I want to make it so when I click a sprite, it randomly picks one of a few different sounds to play. I tried using a list and “pick random” but I couldn’t figure out how to connect it to the sounds I uploaded. Is there a block or trick that can do that? Would love any help or ideas, thanks!

The (my [ V]) block has an option to report the sounds in the sprite as a list.

You can then grab a random item in the list by clicking the black down arrow in the (item ( v) of @list) block and choosing "random".

To actually play the sound, just drop this into a play sound [ V] block (or play sound [ V] until done )

this works perfectly! Thank you so much :grinning_face_with_smiling_eyes: