[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-13 UTC."],[[["`Dictionary.values()` returns the values of a dictionary as a list in the natural ordering of the dictionary's keys."],["You can specify a list of keys to retrieve only the values corresponding to those keys."],["If no keys are specified, all values in the dictionary are returned."],["The returned value is an `ee.List` object."]]],["The function `dictionary.values()` extracts values from a dictionary and returns them as a list. If specific keys are provided as arguments, only the corresponding values are returned; otherwise, all values are included, maintaining the dictionary's key order. The provided examples demonstrate retrieving values for selected keys (e.g., 'B1', 'B2') and for all keys within a dictionary. Both Javascript and python examples are given.\n"]]