I need to know will the map in kotlin preserve the order of the entries which i have entered during insertion
Example
val data = mutableMapOf<String,String>()
data.put("some_string_1","data_1")
.
.
.
data.put("some_string_n","data_n")
will the order preserve during the iteration of the map ?