Finish the method definition given below.
list
is an array of words. word
is a single word. Given list
and word
, the method should return an entry from list
if it matches word
when reversed. It is acceptable even if the match is not case sensitive. If no such match exists, the method should return false
.