Leggi i valori delle proprietà di `testObj` utilizzando la notazione a punti. Imposta la variabile `hatValue` in modo che sia uguale alla proprietà `hat` dell'oggetto, e imposta la variabile `shirtValue` in modo che sia uguale alla proprietà `shirt` dell'oggetto.
# --hints--
`hatValue` dovrebbe essere una stringa
```js
assert(typeof hatValue === 'string');
```
Il valore di `hatValue` dovrebbe essere la stringa `ballcap`
```js
assert(hatValue === 'ballcap');
```
`shirtValue` dovrebbe essere una stringa
```js
assert(typeof shirtValue === 'string');
```
Il valore di `shirtValue` dovrebbe essere la stringa `jersey`
```js
assert(shirtValue === 'jersey');
```
Dovresti usare due volte la notazione a punti
```js
assert(code.match(/testObj\.\w+/g).length > 1);
```
# --seed--
## --after-user-code--
```js
(function(a,b) { return "hatValue = '" + a + "', shirtValue = '" + b + "'"; })(hatValue,shirtValue);