diff --git a/index.js b/index.js index cd6e45d..cdc071b 100644 --- a/index.js +++ b/index.js @@ -1,16 +1,18 @@ -console.log("Hey you! Yeah you! Awesome Developer! You're doing Great Fam! 💪🧑‍💻🙌") +//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: "Xavier", + hometown: "Roeland Park, Kansas - KC 👠", + favoriteColors: ["Purple", " Gold", " forest green", " hot pink"] } function introduceMe (personObj){ - // print out: "Hi, my name is {your name}, and I'm from {your hometown}" + console.log(`Hi, my name is ${personObj.name}, and I'm from ${personObj.hometown}`) - // print out: "My favorite colors are {your favorite colors}" + console.log(`My favorite colors are ${personObj.favoriteColors}`) } + +console.log(introduceMe(meObj)) \ No newline at end of file