The hits variable must be instance variables of the enemy.
then you can have an event like
Bullet on collision with another object(enemy) > Enemy , add to 'Hits' 1
-(subevent) Enemy.hits >= 2 , Enemy > Destroy
The collision event already picks the instance that has collided, so if you destroy the enemy inside that event, it will already destroy the right instance.