"Hello" is actually 6 characters (including the \0), so you'll still get undefined behavior if you try to print your array with it.
Remember that each string needs the amount of characters you need to store + 1 for the \0 char.