How to find the "youngest" Game Object?

I create clones of an existing GameObject on my scene. Sometimes I need to remove the one which was instantiated the last. How can I determine which clone is the newest one?

You can put the instantiated objects into an Array or List when u instantiating it, so the last one/ “newest” will have the last index in the array. @punkrockchicken