def best_capability(capabilities):
    """
    Find the capability with the highest score.

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

    Returns:
        tuple: The capability with the highest score.
    """
    return max(capabilities, key=lambda x: x[1])