You could consider the following:
- Create an Array of Actors in Level Blueprint. Make this array Editable from other Blueprints.
- You could ‘register’ every object you spawn with that array in Construction BP.
- You could then get the length of the array and selectively call Destroy Actor on n-1 or any other element.
This answers your question, but I would not recommend this approach.