grep is used to search for a string in a document
[0-9] would be any number [1-9] would be minimum one {3} says that the sequence in front of it should appear three times
so [4-6]{2}
would be two digits , each with the value of either 4, 5 or 6
444
445
455
555
556 etc...