Then if you want to spawn bugs with that aswell you just put another variable called (float spawnDelay) or something and do:
{
spawnCounter += Time.deltatime;
if (spawnDelay < spawnCounter)
{
enemies.Spawn();
spawnCounter = 0f;
}
timerText.setText(timer);