<?php

$whatDoesTheFunctionReturns = test();

function test(){
	$a = 10;
	$b = 20;
	return $b;
	}
	
echo $whatDoesTheFunctionReturns;