Skills Assessment - Broken Authentication

import itertools
import numpy


# file that contain user:pass
userpass_file = "country_codes.txt"

# file that contain user:pass
userpass_file1 = "top-usernames-shortlist.txt"

output = []

with open(userpass_file1, "r") as fh1:
    for fline1 in fh1:
        with open(userpass_file, "r") as fh:
            for fline in fh:

                fline = fline.strip()
                concatUser = fline1.strip() + fline.strip()
                output.append(concatUser)

    output = numpy.array(output)
    print(output)

    with open("shortlist_permutation_country_codes.txt", "w") as outfile:
        outfile.write("\n".join(output))

i tried this permuation, even with underscore username( _ )countryCode but still doesnt work.
I cant find any other users aside from guest and support