This time, the method must convert amount, which the store sets in USD, to EUR. To do this, add var euros = this.amount * 0.82;.
amount
var euros = this.amount * 0.82;
Make sure to pick var followed by euros and then =, this, ., amount, *, 0.82, ;.
var
euros
=
this
.
*
0.82
;