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