Declare String Variables Bug

What am I doing wrong here, it wants me to create to strings with my name in them, i did exactly that…

// Example
var firstName = “Alan”;
var lastName = “Turing”;

// Only change code below this line
var firstName = “Cody”;
var lastName = “Batchelor”;

You didn’t follow the instructions for what your variables should be called.

Create two new string variables: myFirstName and myLastName and assign them the values of your first and last name, respectively.

1 Like

Oh my, i cant believe i didn’t see that lol, thank you for helping me out haha

Glad I could help. Happy coding!