import random
from typing import List
def concat_with_random_url_ending(base_str: str) -> str:
typical_endings = ['.com', '.org', '.net', '.io', '.co', '.edu', '.gov', '.info', '.biz']
random_ending = random.choice(typical_endings)
return f"{base_str}{random_ending}"
# Example...