I = new Array();
I[0] = new Array();
I[0][0] = 'new';
I[0][1] = 'adjective';
I[0][2] = 0;
I[1] = new Array();
I[1][0] = 'happily';
I[1][1] = 'adverb';
I[1][2] = 0;
I[2] = new Array();
I[2][0] = 'read';
I[2][1] = 'verb';
I[2][2] = 0;
I[3] = new Array();
I[3][0] = 'she';
I[3][1] = 'pronoun';
I[3][2] = 0;
I[4] = new Array();
I[4][0] = 'house';
I[4][1] = 'noun';
I[4][2] = 0;
I[5] = new Array();
I[5][0] = 'but';
I[5][1] = 'conjunction';
I[5][2] = 0;
I[6] = new Array();
I[6][0] = 'on';
I[6][1] = 'preposition';
I[6][2] = 0;
I[7] = new Array();
I[7][0] = 'Hello!';
I[7][1] = 'interjection';
I[7][2] = 0;
