def random_number_generator(arg1, arg2):
    """
    Summary line.

    Extended description of function. This typically
    spans several lines.

    Args:
        arg1 (int): some text about the first argument
        arg2 (str): what the second argument is about

    Returns:
        int: a randomly generated value

    """
    return 42
