Which statement about event emitters is false?
Event names must be camelCase strings.
The emit method allows a arbitrary set of arguments to be passed to the listener functions.
When an event emitter object emits an event, all of the functions attached to that specific event are called synchronously.
Any values returned by the listeners for an emitted events are ignored.