Ok so I need the variable "value" to have a different name every time the cycle repeats. I am fairly new to java so I am unsure how to go about this. Thanks for the help in advance!
for (int i = 0; i < varOptions.size(); ++i) {
System.out.print(varOptions.get(i) + ": ");
double value = myScanner.nextDouble();
}