--- id: 5d68c758e0696bdec46938eb title: Part 44 challengeType: 0 --- # --description-- Finally, update `text.innerText` to equal the `text` from the location object. So far we have been accessing properties of the location object using bracket notation. This time use dot notation. Here is how to access a `name` property of an object called `obj` using dot notation: `obj.name`. # --hints-- See description above for instructions. ```js assert(update.toString().match(/text\.innerText\s*\=\s*location\.text\;?/)); ``` # --seed-- ## --before-user-code-- ```html