const buildTable = articles => articles .map( article => `${article.title}${ article.content }` ) .join() module.exports = buildTable