What is the result of the following code?
console.log(`The number is ${Number("5")}`);
"The number is 5"
"The number is '5'"
"The number is Number("5")"
"The number is ${Number("5")}"