Hi,
Your problem is not clear enough. We would be able to help if you can post some more specifics about the matter. Also please explain what this addCreeper() method does.
Cell creeper = new Cell();
cellArray[randomCell] = creeper.addCreeper();
If the adCreeper() is a void method then definitely the above is wrong. I also noticed that cellArray is an array of type int[]. Then you can't add creepers which are of type Cell to this array. You have to declare the cellArray as follows.
private Cell[] cellArray = new Cell[numCells];