How can I make the line inside the if statement work?
const player1 = {
name: "Ashley",
color: "purple",
isTurn: true,
play: function() {
if (this.isTrue) {
return `this["name"] is now playing`;
}
}
};