Django - Async Django
Given this consumer code snippet, what will be printed when a client sends a text message 'hello'?
```python
class EchoConsumer(AsyncWebsocketConsumer):
async def connect(self):
await self.accept()
async def receive(self, text_data):
await self.send(text_data=text_data)
```
