function creatgreater(name)
{
firstname = name.split(" ")[0];
function greater()
{
console.log("Hello " + firstname);
}
return greater;
}
let johncreater = creatgreater(“John Doe”);
let harrycreater = creatgreater(“Harry potter”);
johncreater();
harrycreater();
//EXPECTED
Hello John
Hello Harry
//OUTPUT
Hello Harry
Hello Harry