const solution = (seoul) => { return `김서방은 ${seoul.indexOf('Kim')}에 있다`; }
seoul배열에서 indexOf를 이용해서 kim의 인덱스를 찾고, 백틱으로 문자열을 반환한다.