You should only be able to store when created. ``` var test = "kay" test = "bye" ``` is completely fine as code ``` huh = "no" ``` isn't because huh is not initialized with var yet. Currently the VM handles all assignments as a create.