I had the problem that the browser doesn't use ES6.
I have fix it with:
<script type="module" src="index.js"></script>
The type module tells the browser to use ES6.
export const bla = [1,2,3];
import {bla} from './example.js';
Then it should work.