Multiply Two Decimals with JavaScript 2

Tell us what’s happening:
i tried 2.5 * 2.5
and 2.50 * 2.50
please help!!!

Your code so far

var product = 2.0 * 0.0;


Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0.

Link to the challenge:
https://www.freecodecamp.org/challenges/multiply-two-decimals-with-javascript

2.5 * 2.5 = 6.25

The challenge starts with var product = 2.0 * 0.0;

You are only supposed to replace the 0.0 so that 2.0 multiplied by the replacement is equal to 5