Complete the solution
Drag tokens into the blanks
1function isAnagram(s, t) {2 if (s.length !== t.length) return ___;3const count = {};4 for (const c of s) count[c] = (count[c] || 0) + ___;5for (const c of t) {6count[c] = (count[c] || 0) - 1;7 if (count[c] < ___) return false;8}9return true;10}