Given two strings, concatenate s2 to the end of s1.
// input: const s1 = 'hello', s2 = ' world' // output: 'hello world'
/* output */