In JavaScript, write code that loops through the two variables and returns an array ['2 is zwei is drei is vier is funf is sechs']. Example return: ['2 is zwei is drei is vier 5 is funf 6 is sechs']. Hint: use Array forEach, Array map, or a for loop function.
const cardinalNumbers = [2, 3, 4, 5, 6];
const germanNumbers = ['zwei', 'drei', 'vier', 'funf', 'sechs'];