const stringifyArray = (arr) => {
  const items = arr.map(el => `${el}`).join(', ').trim();
  return `[${items}]`;
};