diff --git a/README.md b/README.md index b7e4fe1..0686fee 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# Change This - Make this About ✨YOU✨ +# Open this to learn stuff about ✨ME✨ -## There's an index.js file in this code base. You have two goals: -- Alter the `meObj` so it matches relevant information about ✨YOU✨ -- Complete the logic in the `introduceMe` function to print out the 2 statments that the comments are guiding you to print out. \ No newline at end of file +## There's an index.js file in this code base. You will learn TWO things about me: + +### Enjoy 🥰 \ No newline at end of file diff --git a/index.js b/index.js index cd6e45d..2357db4 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: "Anamaria T.", + hometown: "Born in Providence, RI ; Raised in the Bronx, NY", + favoriteColors: ["Lavender", "Green", "Black"] } 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 was ${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