let one = 1; let two = 1; let three; for (let i = 2; i < n ; i++) { three = one + two; one = two; two = three; } n = three; return n;