DynamoDB - with Serverless
Given this Lambda function snippet, what will be the output if the item with id '101' exists in the DynamoDB table?
```javascript
const AWS = require('aws-sdk');
const docClient = new AWS.DynamoDB.DocumentClient();
exports.handler = async (event) => {
const params = { TableName: 'Users', Key: { id: '101' } };
const data = await docClient.get(params).promise();
return data.Item ? data.Item.name : 'Not Found';
};
```
Assuming the item with id '101' has name 'Alice'.
