export function greet(name) { console.log(`Hello ${name}`) return "Hello " + name; } greet("Maria"); greet("Alvin"); greet("Pedro Lucas");