``` python In [62]: index = pd.MultiIndex.from_arrays([['a', 'b', 'c'], [1, 2]]) In [63]: index Out[63]: MultiIndex(levels=[['a', 'b', 'c'], [1, 2]], labels=[[0, 1, 2], [0, 1]]) ``` Probably not what the user wants, and we rely on them being the same length in, e.g. `index.shape` which will raise a ValueError if you access it.