From the answer:
The number at //1 and //2 are actually the same. Although confusing, it is legal to have multiple underscores between two digits.
This is a sentence from the book:
To make it easy to read and comprehend large numbers, Java allows underscores in numeric literals. For example, 1000000.0 can also be written as 1_000_000.0. You cannot start or end a literal with an underscore, and cannot use multiple underscores consecutively.