int randChokeIndex = 0;
for (int i = 0; i < numDrivers; i++) {
randChokeIndex = rand.nextInt(numChokes);
// DirectDriverArray[i] = new DirectDriver(new SynthSourceRndSize(0,
// minMsgSize, maxMsgSize), tchokeArray[randChokeIndex]);
directDriverArray[i] = new DirectDriver(new SynthSourceRndSize(0,
minMsgSize, maxMsgSize), tchokeArray[randChokeIndex]);
// adds this choke to the set of chokesUsed
chokesUsed.add(tchokeArray[randChokeIndex]);
}