Extend the array structure by adding the following computed properties and methods:
[1, 2, 3].squared ➞ [1, 4, 9]
[1, 2, 3].cubed ➞ [1, 8, 27]
[1, 2, 3, 4].divisible(by: 2) ➞ [2, 4]
[1, 2, 3, 4].strictly(above: 1) ➞ [2, 3, 4]
[1, 2, 3, 4].strictly(below: 2) ➞ [1]N/A