diff --git a/exercises/84 - Web Speech Colour Game/speech-FINISHED.js b/exercises/84 - Web Speech Colour Game/speech-FINISHED.js index e080b3986..ede3698e0 100644 --- a/exercises/84 - Web Speech Colour Game/speech-FINISHED.js +++ b/exercises/84 - Web Speech Colour Game/speech-FINISHED.js @@ -19,7 +19,7 @@ window.SpeechRecognition = function start() { // see if their browser supports this - if (!("SpeechRecognition" in window)) { + if (!window.SpeechRecognition) { console.log("Sorry your browser does not support speech reco. "); return; }