def select_best_capability(capabilities):
    """
    Selects the best capability based on its score.

    Args:
        capabilities (list): A list of tuples containing capability names and scores.

    Returns:
        tuple: The name and score of the best capability.
    """
    return max(capabilities, key=lambda x: x[1])