Given the following initialized variables... (just to clarify, in the code I'm referencing, both variables are generated dynamically)
// Start of Code that CANNOT be altered.
var myPrimaryArray = [["Potato","Walrus"],42,[["Your father was a hamster", "Target"],362]];
var locationArray = [2][0][1];
// End of Code that CANNOT be altered
//What should be inserted here to retrieve "Target"?
Is there a way to ensure this will return "Target" using only the two variables provided? Without prior knowledge of how deeply nested each array is?