Build a Lambda function that receives a list of purchased items and returns suggestions for items not yet purchased (simple set subtraction).
{
"allItems": ["starter_pack","booster_pack","data_pack","golden_apples","skins"],
"owned": ["data_pack","starter_pack"]
}
suggestions = allItems - owned.{ "suggestions": [...] } with status code 200.owned values.POST /suggest with JSON body as shown above.

allItems or owned → return 400 with a clear message.
