Given a 0-indexed integer ``rowIndex``, return *only* the ``rowIndex``-th row of Pascal's triangle (0-indexed, so row 0 is [1]).
* declare a currentRow array of size i+1 as for each row number, thats how many * elements there are. then we intialize the first ...