I have following dictionary
var data : [String: String] = ["DEV" : "DEV", "QUA" : "QUA" , "SIT" : "SIT", "UAT" : "UAT", "PROD" : "PROD"]
I Iterate it using for loop and get the following values
SIT
PROD
DEV
UAT
QUA
ie consecutive values
i have the following code to iterate it
for (key, value ) in data.enumerate()
{
print(value)
}
I want to get these values in same format of declaration.