The concept of a Set is that it is a collection of objects without any ordering. You can see it as a bag of objects, and the objects are all jumbled together in the bag. There is no inherent order.
This does not mean that a certain implementation of Set (such as HashSet) can't store objects in a certain order. The thing you have to keep in mind that nothing is specified or guaranteed about the order, so
you should not write a program that relies on the order of objects in a HashSet.
So, the fact that a Set has no order does not necessarily mean that the objects have to be presented in a random order.