We can update a variable as often as we want. Three times? No problem!

Try it yourself: update the name variable to store the value "Lawrence" and print it.

Great! The console output proves that the value of name changed from "Lukas" to "Lawrence".

Make sure you assemble name = "Lawrence"; and console.log(name);.