A variable is a named container for storing data. Think of it as a labeled box where you put values. You create a variable, give it a name, and assign a value to it.
Once created, you can use that name anywhere in your code to access the stored value. You can also change what's in the box later. Variables let you write flexible code that works with different data without rewriting everything.