Creating Custom Events

What happens if you dispatch a custom event that no element is listening for?
const customEvent = new CustomEvent('myCustomEvent');
document.dispatchEvent(customEvent);
Next Question (3/20)