Here is a piece of code written in the console. Write out a message that will be displayed in the console. If there are several messages, write them out separated by a space in the order of output to the console.
> .editor
// Entering editor mode (Ctrl+D to finish, Ctrl+C to cancel)
const sendFact = () => {
console.log("How many seconds in an hour?");
return 3600;
}
sendFact();