Welcome to SO! Do you want splice to actually remove the item from the array permanently, or do you just want to index into the array to retrieve an item? Either way, the index needs to be on the row array: row[1].splice(2, 1). Thanks for clarifying.
row[1].splice(2, 1). Thanks for clarifying.