I am working on making a multiple choice quiz. The problem is sometimes the audio works, sometimes it does not. Here's the one I am trying:
var correct = new Audio("https://www.dropbox.com/s/ehdu5ilfh5f96h8/Sololearn%20Correct.mp3?dl=1&raw=1");
var wrong = new Audio("https://www.dropbox.com/s/zxbq3favobpexi3/Sololearn%20Wrong.mp3?dl=1&raw=1");
or I just simply use which does not completely work at all....
var correct = new Audio("correctANSWER.mp3");
var wrong = new Audio("wrongANSWER.mp3");
Hope someone can help me fix the problem. Thanks in advance!