var realUser = {
email: 'test@test.com',
firstName: 'Jordan',
lastName: 'Hudgens',
sayHi() {
return "Hey there!";
}
};
console.log(realUser.email);
console.log(realUser.firstName);
console.log(realUser.lastName);
console.log(realUser.sayHi());
To embed this project on your website, copy the following code and paste it into your website's HTML: