Complete the TypeScript solution
Drag tokens into the blanks
1function isAnagram(s: string, t: string) {2 if (s.length !== t.length) return ___;3 let first: Array___string | null> = s.split('');4 const second = t.___('');5 for (let i = ___; i < second.length; i++) {6const element = second[i];7let found = first.indexOf(element);8if (found !== -1) {9first[found] = null;10} else {11return false;12}13}14return true;15}