I believe it is saying an Object's Instance Variables can be changed at run-time. This means that when an object is created a new copy of the variable is created....
Think of it like this Instance variables are different for each instance of the class(object) while static variable values are shared throughout all instances of the object.
The only type of variables that cannot be "changed" at runtime are final variables.