var myFirstname = “Hudson”;
var myLastName = “Corwyn”;
// Only change code below this line
var myFirstname = “Belly”;
var myLastName = “matt”;
Any valid hint ?
var myFirstname = “Hudson”;
var myLastName = “Corwyn”;
// Only change code below this line
var myFirstname = “Belly”;
var myLastName = “matt”;
Any valid hint ?
This wont work because you are trying to initialize the same variables twice.
Using the ‘var’ keyword initializes the variable. If you want to re-assign a variable that already exists, then you don’t need the ‘var’ there at all.