I have declared a range of indexed JMeter variables d1..dn.
Is there a way to operate with it within JS or Groovy script loop?
For instance I want to print all those variable, but I have problem with referring to them by name
for (i = 1; i<n; i++)
{
log.info(?)
}