I think it's not difficult to guess what the following bash snippet outputs:
md5sum /proc/$$/environ ; export FOO=bar ; md5sum /proc/$$/environ ; FOO=qux; md5sum /proc/$$/environ
What's interesting is what happens if you put that inside bash -c '...'.