Explain that export makes a variable available to subprocesses. Add a simple example:
I think this might work
$ cat script.sh
echo "variable value=$var1"
$ var1="hello"
$ shell script.sh
variable value=
export var1="hello"
$ shell script.sh
variable value=hello