So I'm creating an Alexa skill using the Alexa Developer Console with a Python backend. I've just started a new skill, with the 'Hello World' template, so it has the default utterances of hi, hello, etc.
When testing the skill, using the Alexa Simulator, I input the word 'test' and it invoked the HelloWorldIntent even though the word 'test' is not an utterance for that intent. Is there a way to make it so that an intent can ONLY be invoked by the utterances?
EDIT: I have the built-in FallBackIntent enabled, but this doesn't seem to solve the issue.