Build your intuition. Click the correct answer from the options.
What will be the output of this code?
TEXT/X-PHP
1<?php
2 
3$greetings_string = "Hello World";
4 
5$greetings_explode = explode(" ",$greetings_string);
6 
7echo gettype($greetings_explode);
8 
9?>Click the option that best answers the question.
- string
- boolean
- array


