const HelpIntentHandler = { canHandle(handlerInput) { return Alexa.getRequestType(handlerInput.requestEnvelope) === 'IntentRequest' && Alexa.getIntentName(handlerInput.requestEnvelope) === 'AMAZON.HelpIntent'; }, handle(handlerInput) { const speakOutput = 'To know about the facts, just say Facts'; //just edit this return handlerInput.responseBuilder .speak(speakOutput) .reprompt(speakOutput) .getResponse(); } };