AWS - SNS and SQS
Given this Python code snippet using boto3 to receive a message from an SQS queue, what will be printed if the queue is empty?
```python
import boto3
sqs = boto3.client('sqs')
response = sqs.receive_message(QueueUrl='https://sqs.region.amazonaws.com/123456789012/MyQueue')
print(response.get('Messages'))
```
