Concept Flow - Variable shadowing
Declare variable x = 5
Shadow x with new x = x + 1
Shadow x again with new x = x * 2
Use x (final shadowed value)
End of scope
Variable shadowing means reusing the same name for a new variable that hides the old one temporarily.