kSound = loadSound('KEYS.m4a');
sSound = loadSound('SINK.m4a');
cSound = loadSound('CARROT.m4a');
hSound = loadSound('HASHBROWNS.m4a');
pSound = loadSound('PAIN.m4a');
keys = loadImage("keys.png");
sink = loadImage("sink.png");
carrot = loadImage("carrot.png");
hashbrowns = loadImage("hashbrowns.png");
pain = loadImage("pain.png");
createCanvas(windowWidth, windowHeight);
new p5.Speech().speak("Daily Sounds Library");
text('DAILY SOUNDS LIBRARY', windowWidth/2, windowHeight/2);
keysB = createButton('KEYS');
keysB.position(650, 550);
keysB.mouseClicked(playKeys);
sinkB = createButton('SINK');
sinkB.position(300, 200);
sinkB.mouseClicked(playSink);
carrotB = createButton('CARROT');
carrotB.position(1200, 500);
carrotB.mouseClicked(playCarrot);
hashbrownsB = createButton('HASHBROWNS');
hashbrownsB.position(200, 500);
hashbrownsB.mouseClicked(playHashbrowns);
painB = createButton('PAIN');
painB.position(1000, 150);
painB.mouseClicked(playPain);
image(keys, 650, 550, 200, 200);
image(sink, 300, 200, 200, 200);
image(carrot, 1200, 500, 200, 200);
image(hashbrowns, 200, 500, 200, 200);
image(pain, 1000, 150, 200, 200);
function playHashbrowns(){