How to search multiple word using grep command?

How to search multiple word using grep command
for example i want to reserch

ANJ001
AA

try

grep "ANJ001.*AA" filename # if you want both words
egrep -i 'ANJ001|AA' filename # if want either of the word

1 Question:Why you have ask question in such a font and without spaces..