Dummyjson data retrive through uipath

Products is an array.
Try jsonAsObjectoutput.SelectToken("products[0].title").ToString to get the title from first item.

Or you can use Deserialize JSON Array activity to output as JsonArray and loop over all items and get title.
image