# Using a dot to find a named value [Syntax and values](README.md) A dot can select a named value, such as the score in a player map. It can also select an exported name from an imported module. For an identifier-shaped text key, member access is exact map-key shorthand: ```text player.score set player.score = 10 ``` These are equivalent to: ```text player["score"] set player["score"] = 10 ``` Member names are case-sensitive user data. They are never translated. Member access does not expose host objects, methods, or properties on other value types. ## Related entries [Syntax and values](README.md) · [Built-ins](../builtins/README.md) · [Programming guides](../guides/README.md)