It was pointed out during the workshop that the output of genericMatrix should be row major instead of column major because this makes no sense:
i1 : R = QQ[x_(1,1) .. x_(2,5)];
i2 : genericMatrix(R, 2, 5)
o2 = | x_(1,1) x_(1,3) x_(1,5) x_(2,2) x_(2,4) |
| x_(1,2) x_(1,4) x_(2,1) x_(2,3) x_(2,5) |
2 5
o2 : Matrix R <-- R