I suspect you’re missing a file extension (.mp3, etc.) on your audio file path:
let sound;
function preload(){
sound = loadSound("ADHD project1sound2.mp3");
...
Also, if you’re running the page without a web server (opening the HTML file directly in your browser), you’ll encounter a CORS error.