How can I display only latest 60 products on a collection?

Hey so basically I have a collection named “New Arrivals” and I only wanna display latest 60 products like as soon as a new product gets uploaded after 60 products then the oldest product which is probably the 60th product, it should automatically get removed from the collection and display new products that gets added into the collection. Any idea how can I do that?

go to collection and set the sort Newest!

I suggest you copy a colllection template and limit it to 60 in the loop product position.

{% for product in collection.product limit:60 %}
your product items .....

{% endif %}