Code console.log() with the message 'You paid ' + this.amount + ' USD');. This prints how much the customer paid in USD.
console.log()
'You paid ' + this.amount + ' USD');
Make sure to pick console.log followed by ( and then 'You paid ' + this.amount + ' USD', ), ;.
console.log
(
'You paid ' + this.amount + ' USD'
)
;