It doesent work, maybe it has something to do ith how I give each object itīs values.

In the .cpp file I do like this:

ex.
monsterArray[0].name("Brainleach");
and so on, up to MonsterArray[4], how would you do when you give the monsterArray itīs values?

Can I give the array itīs values in the Monster.cpp file
lets say that in my defined class I will define a method called createMonsters(), or cant I use a class method to give the values to the array. Do I have to use a non member function to do this?