export function playSound(soundUrl: string): void { const audio = new Audio(soundUrl); audio.play(); }