This doesn't work, when I remove "let" from big value (in the 3 times it appears), it works.Why is that?
      let x = prompt("Enter number");
      if (x > 5) {
        let y = prompt("Enter another number");
        let z = prompt("Enter another number");
        let big = y;
        if (y > z) {
          let big = y;
        } else if (z > y) {
          let big = z;
        }
        for (let i = 0; big > i; i++) {
          console.log("hello");
        }
      }
 
    