Fluffypoopo
use an array then.
In case you don't know how to do this:
// define the array
var x = [4, 10, true, 16, 21, 'hi', 85];
// print 'hi' (arrays start with 0), x[0] returns the first item in the array, x[1] returns the second, x[2] the third, etc.
console.log(x[5]); // x[5] is 'hi'
// change 16 to 160
x[3] = 160;
// prints 160 instead of 16 because it was changed
console.log(x[3]);
// add 'wassup' to the end of the array
x.push('wassup');
// remove 21 from the array, 21 is 4 in the array
x.splice(4,1); //dont worry about the 1
// veeerrrryyyy important remember arrays start with 0
thats it i think