Concept Flow - Local variables and naming conventions
Start of method or block
Declare local variable
Assign value to variable
Use variable in code
End of method or block
Variable goes out of scope
Local variables are created inside methods or blocks, used there, and disappear after the block ends.