module.exports = function(l){ if(l == null) { return "?"; } else { return l.join(", ") } }