var list1 = ["every", "good", "boy", "does", "fine"];
var list2 = ["good","boys","do","fine","always"];
var useThisList;
// use your own code to choose which list...
// I will just make a random choice:
if ( Math.random() < 0.5 ) { useThisList = list1; } else { useThisList = list2; }
// demonstrate that we did choose one of either list1 or list2
alert( useThisList.join("::") );
__________________
An optimist sees the glass as half full.
A pessimist sees the glass as half empty.
A realist drinks it no matter how much there is.