In my firebase realtime database i have list of integers and the key of these values is integer too when i add new value to the list it doesn't add the new value to the last of this list (firebase sort this list From the smallest to the largest) so how can i forbid this method so the new values are always added to the end of the list without the Firebase arranging them.
if i add 0 as an example it will be the first value in the list what i want is to be the last value in the list because it's the newest value:
Note: i want the values to be unique for example(number 9 should not duplicate) that's why i can't use push to generate new key every time.
