so I am trying to access the last item in the subclass of the array regardless of the size of the array.
All I got so far was undefined.
var b = [['hello', 'goodbye'], ['hi', 'bye'], ['day', "night"]];
var first = b[0][0];
var last = b[0][b.length-1];