function Userinfo (ad,age,city,street){
this.ad = ad
this.age = age
this.city = city
this.street = street
}
let orxan = new Userinfo ('Orxan',30,'sumqayit','sulh')
console.log(orxan[age])
why console.log(orxan[age] is not working but console.log(orxan.age) working