diff --git a/index.js b/index.js index cd6e45d..46f74c4 100644 --- a/index.js +++ b/index.js @@ -3,14 +3,20 @@ 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: "Tyrell", + hometown: "Brookln", + favoriteColors: ["green", "purple"] } function introduceMe (personObj){ + console.log(`Hi, my name is ${personObj.name}, and I'm from ${personObj.hometown}`) // print out: "Hi, my name is {your name}, and I'm from {your hometown}" + console.log(`My favorite colors are ${personObj.favoriteColors[0]} and ${personObj.favoriteColors[1]} `) // print out: "My favorite colors are {your favorite colors}" } + +introduceMe(meObj); + +