DynamoDB - with AWS SDK
Identify the error in this DynamoDB Document Client code snippet:
const params = { TableName: "Products", Item: { id: 101, name: "Pen" } };
const command = new GetCommand(params);
const result = await docClient.send(command);
console.log(result);