What happens if the following code is executed?
const x = 10; x = 20;
The value of x does not change
x
Nothing happens
A runtime error is generated
The value of x is overwritten