I have an array like this:
var Array = ["a","b","c","d"]
How can i use for() loop to insert new values to it, the index of value start from index 0 and it +1 each time i insert new value.
For example
Array.insert("e", at: 0) //["e","a","b","c","d"]
Array.insert("f", at: ???) //["e","f","a","b","c","d"]