const addSuffix = (string, suffix) => { const suff = suffix; const newText = string.concat(suffix); return newText };