diff --git a/README.md b/README.md index b7e4fe1..5ee1cab 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Change This - Make this About ✨YOU✨ +# Aspiring Full Stack Developer :nerd_face: ## There's an index.js file in this code base. You have two goals: - Alter the `meObj` so it matches relevant information about ✨YOU✨ diff --git a/index.js b/index.js index cd6e45d..22574a7 100644 --- a/index.js +++ b/index.js @@ -3,14 +3,15 @@ console.log("Hey you! Yeah you! Awesome Developer! You're doing Great Fam! 💪 const meObj = { - name: "Sam", - hometown: "The Boogie-Down - BX 🙅🏾‍♂️", - favoriteColors: ["gold", "navy blue", "forest green", "red"] + name: "Oscar", + hometown: "Brentwood, NY", + favoriteColors: ["red", "blue", "russian violet"] } function introduceMe (personObj){ - // print out: "Hi, my name is {your name}, and I'm from {your hometown}" + console.log(`Hi, my name is ${meObj.name}, and I'm from ${meObj.hometown}.`) - // print out: "My favorite colors are {your favorite colors}" + console.log(`My favorite colors are ${meObj.favoriteColors}.`) } +introduceMe(meObj) \ No newline at end of file