DynamoDB - with AWS SDK
Given the following code snippet, what will be the output?
import boto3
client = boto3.client('dynamodb')
response = client.list_tables()
print(response['TableNames'])