The function below takes a single string parameter: phone_number. Phone numbers will be passed in using the format '(555)867-5309'. Complete the function to return the area code (the numbers wrapped in parentheses) as a string. For example, your code should return '555' if given the phone number above. Hint: you can just use slicing for this.