Build a Factorial Calculator - Build a Factorial Calculator

Tell us what’s happening:

please I need help, seems like I missed something.

Your code so far

let num = 8;

function factorialCalculator(number) {
  let result = 1;

   for (let i = 1; i <= number; i++) {
     result *= 1;
   }

   return result;
}

let factorial = factorialCalculator(num);
let resultMsg = `Factorial of ${num} is ${factorial}`;
console.log(resultMsg);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36

Challenge Information:

Build a Factorial Calculator - Build a Factorial Calculator

If the initial value of result is 1, what value will it have after the loop runs say 8 times?