Simple Array Question

I have an element in an array that comes from an alphabetical listing. The element might be something like “Frog, The” I need to remove the comma from the element and reverse it so it reads “The Frog” The code I have is as follows, but the comma is still there, any help is appreciated.

cols[1] = cols[1].split(",").reverse.join();