// Example
var ourName = "freeCodeCamp";
var ourStr = "Hello, our name is " + ourName + ", how are you?";
// Only change code below this line
var myName;
var myStr;
var myName = "Chiamaka";
var myStr = "myName";
var sentence = "My name is " + myName " + " and I am well!";
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36.
None of the instructions say to assign any value to a variable named sentence.
You have the first part of the instructions correct. You have assigned your name to the variable myName. Now you just need to assign a string to myStr which starts with “My name is " and ends with " and I am well!”. In the middle of this string should be your name. Since your name is already assigned to the variable myName, you should use it when constructing the string.
// Example
var ourName = "freeCodeCamp";
var ourStr = "Hello, our name is " + ourName + ", how are you?";
// Only change code below this line
//var myName;
//var myStr;
var myName = "Chiamaka";
var myStr = "My name is " + myName " + " and I am well!";
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36.