Hossam Fahmy 

class Person{
  constructor(){
    this.name = "Hossam Fahmy";
    this.traits = ["Design","Dev"];
    this.age = new Date().fullYear() - 1998;
    }
  }