From d2647233232e8d19b39b98c626aebb127376bb8b Mon Sep 17 00:00:00 2001 From: Smille007 Date: Thu, 27 Apr 2023 14:01:44 -0400 Subject: [PATCH] activity --- index.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/index.js b/index.js index cd6e45d..d19a52f 100644 --- a/index.js +++ b/index.js @@ -3,14 +3,14 @@ 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: "Daryna", + hometown: "Dnipro, Ukraine๐Ÿ‡บ๐Ÿ‡ฆ", + favoriteColors: ["blue", "green", "peach", "red"] } function introduceMe (personObj){ - // print out: "Hi, my name is {your name}, and I'm from {your hometown}" - - // print out: "My favorite colors are {your favorite colors}" -} + console.log(`Hi, my name is ${personObj.name}, and I'm from ${personObj.hometown}`); + console.log(`My favorite colors are ${personObj.favoriteColors}`) + } + introduceMe(meObj) \ No newline at end of file