If I have the following initialized... (fyi, in the code I'm basing it off of, both variables are dynamically created)
// Start of Code that MUST stay unchanged.
var myPrimaryArray = [["Potato","Walrus"],42,[["Your father was a hamster", "Target"],362]];
var locationArray = [2][0][1];
// End of Code that MUST stay unchanged
//What to put here to get "Target"?
How do I make this return "Target", with only those two variables? (Not knowing the depth into either array I have to go ahead of time.)