The description for the next challenge tells us that the password is the file called data.txt next to the word millionth. A simple grep through the file gets us the password.

bandit7@bandit:~$ ls
data.txt
bandit7@bandit:~$ grep millionth data.txt
millionth       XXXXXXXXXXXXXXXXXXXXXXXX(actual password not shown)
bandit7@bandit:~$