Every object has a separate copy

An object is said to be an instance of a class.

Every object has its own copy of every instance variable that is declared in the class from which the object was instantiated.

Therefore, each instance variable is the property of one instance (object) of the class. 

(Hence the name instance variable.)