What will this code log in the console?
function sayHello() { console.log('hello'); } console.log(sayHello.prototype);
an error message
an object with a constructor property
"hello"
undefined