Medium
What will be the output of the following code? (Object freeze)
1let count = 0;23function incrementCounter() {4 count++;5}67incrementCounter();8incrementCounter();910Object.freeze(incrementCounter);11incrementCounter();1213console.log(count);