Find why this typed variable declaration fails to compile.
const count: number = 0; count = count + 1; console.log(count);
What is the bug in this code?