currently it's not possible to access keys of arrays that contain fluid specific characters like . { } etc.
although that's not a usecase that we "endorse" using those characters inside accessor paths, but there's
a relatively valid usecase to use a "." inside the array key when you assign typoscript values into fluid
which contains dots for the array keys
example*
<?php
$view->assign('foo',
'foo' => array(
'bar.' => 'dasoidjo'
)
);