137: Highlights
- A local variable is a variable that is declared inside a block, such as
a block that constitutes a method body.
- Java isolates parameters and local variables, enabling you to reuse
their names. The values of a method's parameters and local variables
are not available in expressions that appear outside of the method's
definition.