# Exercise 5: Split, concatenate, reshape arrays The goal of this exercise is to learn to concatenate and reshape arrays. 1. Generate an array with integers from 1 to 50: `array([1,...,50])` 2. Generate an array with integers from 51 to 100: `array([51,...,100])` 3. Using `np.concatenate`, concatenate the two arrays into: `array([1,...,100])` 4. Reshape the previous array into: ```console array([[ 1, ... , 10], ... [ 91, ... , 100]]) ```