how to make a random array from two numbers code example
Example: assigning an array with random numbers
public static double[] list() {
anArray = new double[10];
for(int i=0;i<anArray.length;i++)
{
anArray[i] = randomFill();
}
return anArray;
}