Summary
The Map object holds key-value pairs and remembers the original insertion order of the keys, as stated in.
1
Additionally, Map is a collection of key-value pairs where the key can be of any type and it remembers the original order in which the elements were added to it, as stated in.
2
Therefore, it can be concluded that the Map object is in a different order than the original data in JavaScript.
According to