diff --git a/index.js b/index.js index 8151607..5380c7c 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,13 @@ -var name = "Joe" -var height = "74" - +var name = "Joe"; +var height = "74"; +if (name === "Susan"){ + console.log("The name is correct") +} +else { + console.log("Expected name to be Susan") + +} // Don't worry about this module.exports = { name, height }