class DevOps_Engineer {
constructor() {
this.name = "Gilton";
this.age = 30;
this.role = "Devops Engineer";
this.language_spoken = ["en", "sw"];
}
sayHi() {
console.log("Thanks for stopping by. I hope you find some of my work interesting.");
}
}
const me = new DevOps_Engineer();
me.sayHi();



