Complete the code to define a composite sort key by concatenating 'CATEGORY' and 'DATE'.
SortKey = CATEGORY [1] DATEIn DynamoDB, to create a composite sort key, you concatenate attributes using the '+' operator in your code.
Complete the code to create a composite sort key string with a '#' separator between 'CATEGORY' and 'DATE'.
SortKey = CATEGORY + [1] + DATEThe '#' separator must be a string literal enclosed in quotes to concatenate properly.
Fix the error in the composite sort key assignment by choosing the correct operator to concatenate strings.
SortKey = CATEGORY [1] DATEThe '+' operator is used to concatenate strings in most languages, including when building composite keys.
Fill both blanks to create a composite sort key with a '#' separator between 'CATEGORY' and 'DATE'.
SortKey = [1] + [2] + DATE
The composite key is built by concatenating CATEGORY, the '#' separator, and DATE.
Fill all three blanks to build a composite sort key string combining 'CATEGORY', '#', and 'DATE' correctly.
SortKey = [1] + [2] + [3]
The composite sort key is the concatenation of CATEGORY, the '#' separator, and DATE.