🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Exercises.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.

Project 8: Event Invitation

JS Wizard
Step 1 of 3
Project

Building an Event Object

Create an event object with title, date, and venue properties, then log two of them with dot notation. An object groups related values under named keys — a much clearer shape than three separate loose variables.

🎯 Your Task

Please add the exact code shown in the light gray box below to your editor.Do not delete your previous code, just insert these new lines in the correct place!

const event = {
  title: "Summer Rooftop Party",
  date: "2026-07-18",
  venue: "The Elm Street Rooftop"
};

console.log(event.title, event.venue);