If I receive an array of data
var information = {"response":"OK","details":[["Marco","123"],["John","44245"],["Wayne","645464"]]}
How do I loop through them and log the corresponding values to the console?
Marco 123
John 44245, ..
Marco - 123
John - 44245, ...
for (var i = 0; i < info.length; i++) {
}