Coin says to YSITD
``` function con(name){ this.name = name } con.prototype.showName = new Promise((res, rej) => { console.log(this.name); }); ```