Concept Flow - Function scope
Enter function
Create local variables
Execute function body
Access local variables inside function
Exit function
Local variables destroyed
Try to access local variables outside? --> ReferenceError
When a function runs, it creates its own space for variables. These variables only exist inside the function and disappear when it ends.