< JavaScript Playground />

console.log("Welcome to the JavaScript Playground!");

function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet("Coder"));

// Try modifying this code and check the console!
// Here are some ideas:
// 1. Create an array and use array methods
// 2. Write a simple loop
// 3. Define an object and access its properties