Unlock this challenge:
What happens if I don't specify the event to listen to when defining a Stimulus action?
<button data-action="counter#increment" />
Stimulus will throw an error.
Nothing will happen because there aren't any events to listen to.
A "default" event will be used based on the element's type.
It will work: this is a quick way to listen to all events.