What is the result of the following code?
console.log(`${5 + 5 === 10 ? "Correct" : "Incorrect"}`);
"Incorrect"
"10"
"false"
"Correct"