chop returns the character choped off, so if you
expect it to print "fred" it won't.
chop "$a" isn't the same thing as
chop $a. You have to pass a variable to chop,
so it can modify it -- what you are passing it is a string
constant that you made which contains the variable.