What is the output of the below code snippet when executed?
let Employee = function (empno, empname, age, salary) {
this.empno-empno;
this.empname-empname;
this.age-age;
this.salary-salary,
this. displayEmployee =funcfion()(
console.log("Hello");
}
var emp1 = new Employee(2222,"Anil",33,4567.77); emp1.displayEmployee();