Sound notification?

Hi, it it possible to create command (call in JS) to play a sound ?
Like a DING after the test is completed?

runScript | audio.play(ding.mp3);

^^ returns error:

[error] Error: ReferenceError: audio is not defined

Doesnt work for me …
are you using runScript?

runScript | var audio = new Audio('C:/ding.mp3');audio.play();

Command runs positive(green) but there is no sound…