.swap(idx1,idx2)
Description
Parameters
Usage On Arrays
arr = ["wow","hello","world"]
// setup the array
log arr.swap(2,3)
// returns ["wow","world","hello"]
// the values at index 2 and 3 were swappedLast updated