Exercise 6 · Chapter: VariablesRequired+50 XP
Fix the Types
The variables below have the wrong types. Fix them so the program works correctly.
Expected output:
Age: 10 Name: Alex
Need a hint?
3 available · costs 5 XP each
javascript
let age = "ten";
let name = 0;
console.log("Age:", age);
console.log("Name:", name);
Output
Run your code to see the output here.