Solved, thanks to @oguz ismail. It should be if [ $bigfreq -ne $littlefreq ]; then (with spaces) instead of if [$bigfreq -ne $littlefreq]; then (without spaces).
if [ $bigfreq -ne $littlefreq ]; then
if [$bigfreq -ne $littlefreq]; then