Okay I have an array with quite a bit of data in it
I want to find one value and push it too another array
how would I do this? is there some kind of function to search the values and get the index number?
(if you don't understand my problem here's an example)
I have an array(8,5,3,6,21,76,8)
I want to take the value of 21, cut it out of this array and put onto another one
the first array should be(8,5,3,6,76,8) and the 2nd just (21)