✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the correct fix for this function to return `2`?
function fixMe() {
const a = 1;
const b = 1;
let result;
result = "a" + "b"; // Fix this line
return result;
}