Each item of this array is some number.
var items = Array(523,3452,334,31, ...5346);
How do I replace some number in with array with a new on
You can edit any number of the list using indexes
for example :
items[0] = 5; items[5] = 100;