@karenmpiekarski Hey, no worries. although it looks like you still didn’t get your _id value (or row_id as we put it) within the TableRowSelect function.
java test Line 47 row_id is undefined
java test Line 49 _id is undefined
at a guess, It seems the row_choosen provided by the function is only returning the actual column values from your table.
However if you actually only wanted to be able to see just the _id in the console you could add:
console.log(items[0]._id);
regards