What is the output of below #java code
```java
int[] factor = new int[] { 2 };
var numbers = List.of(1, 2, 3);

var stream = numbers.stream()
.map(number -> number * factor[0]);
factor[0] = 0;
stream.forEach(System.out::print);
```

246
10.7%
000
82.1%
I do not know
7.1%
Poll ended at .
This code is coming from famous @venkats from his talk
https://www.youtube.com/watch?v=v5Q7TC5u5Co
Know Your Java?

YouTube