const addPrefix = (string, prefix) => { const pref = prefix; const newText = prefix.concat(string); return newText; };