public void moveEnemiesRandomly() {
   for (Enemy enemy : enemyList) {
     enemy.randomMove(currentMap);
   }
 }