Using trailing commas in object or array literals reduces code portability due to differences in how different browsers interpret these trailing commas.
When an array is defined with a trailing , for some browsers this is ok, but others could fail to process it. The solution is simply to remove the trailing (last) comma from the array definition.