I'm trying to create a method in one class to fill up an array with double values, and then I not only need to call that method in another class, but I need to be able to assign those double values to a new array in the second class. I have to be able to iterate through the double values and subtract them from a total, and so far I haven't found a good way to do that. Is it possible to copy an array into an array in a new class, or do I need some other sort of trick?

Thanks!