in reply to Search a hash case insensitive

Consider this:
my %hash = ( fOO => 1, FoO => 2, FOo => 3, );
and I want to search case insensitively for foo. What value should be returned?