Here's what i'm thinking about:
var a = ["fourth", "third", "second", "first", "zero"];
So now a[0] === "fourth", a[1] === "third"...
and so on. I want to change the direction of the items, so they values will be equilalent to they place in the array like this: a[0] === "zero", a[1] === "first"...
.