This is a hard one, but I am attempting to convert the main.js file into the commented code. The code that is not commented should go inside of the commented portion under GetRhyme. But correctly coded to work with Alexa. For example,
var rhyme = prompt("Enter the word to rhyme with");// FUTURE ALEXA UTTERANCE
will need to be changed to something such as res.say(rhyme).reprompt(rhyme).shouldEndSession(false);
This is a hard one, but I am attempting to convert the main.js file into the commented code. The code that is not commented should go inside of the commented portion under GetRhyme. But correctly coded to work with Alexa. For example,
var rhyme = prompt("Enter the word to rhyme with");// FUTURE ALEXA UTTERANCE
will need to be changed to something such asres.say(rhyme).reprompt(rhyme).shouldEndSession(false);